Mercurial > emacs
annotate lisp/apropos.el @ 66560:232f770dbf0f
(comint-send-input): Call `comint-update-fence' when
`comint-process-echoes' and `comint-prompt-read-only' are both
non-nil, to avoid leftover read-only newline.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sun, 30 Oct 2005 16:42:48 +0000 |
parents | 4d1085b02d64 |
children | d1d47a44eee5 fa0da9b57058 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33921
diff
changeset
|
1 ;;; apropos.el --- apropos commands for users and programmers |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1989, 1994, 1995, 2001, 2002, 2003, 2004, |
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
845 | 5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
6 ;; Author: Joe Wells <jbw@bigbird.bu.edu> |
23867 | 7 ;; Rewritten: Daniel Pfeiffer <occitan@esperanto.org> |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1894
diff
changeset
|
8 ;; Keywords: help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
9 |
367 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
367 | 15 ;; 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 | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
367 | 26 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 ;;; Commentary: |
367 | 28 |
29 ;; The ideas for this package were derived from the C code in | |
30 ;; src/keymap.c and elsewhere. The functions in this file should | |
31 ;; always be byte-compiled for speed. Someone should rewrite this in | |
32 ;; C (as part of src/keymap.c) for speed. | |
33 | |
34 ;; The idea for super-apropos is based on the original implementation | |
35 ;; by Lynn Slater <lrs@esl.com>. | |
36 | |
37 ;; History: | |
38 ;; Fixed bug, current-local-map can return nil. | |
39 ;; Change, doesn't calculate key-bindings unless needed. | |
40 ;; Added super-apropos capability, changed print functions. | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
41 ;;; Made fast-apropos and super-apropos share code. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
42 ;;; Sped up fast-apropos again. |
367 | 43 ;; Added apropos-do-all option. |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
44 ;;; Added fast-command-apropos. |
367 | 45 ;; Changed doc strings to comments for helping functions. |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
46 ;;; Made doc file buffer read-only, buried it. |
367 | 47 ;; Only call substitute-command-keys if do-all set. |
48 | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
49 ;; Optionally use configurable faces to make the output more legible. |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
50 ;; Differentiate between command, function and macro. |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
51 ;; Apropos-command (ex command-apropos) does cmd and optionally user var. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
52 ;; Apropos shows all 3 aspects of symbols (fn, var and plist) |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
53 ;; Apropos-documentation (ex super-apropos) now finds all it should. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
54 ;; New apropos-value snoops through all values and optionally plists. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
55 ;; Reading DOC file doesn't load nroff. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
56 ;; Added hypertext following of documentation, mouse-2 on variable gives value |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
57 ;; from buffer in active window. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
58 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
59 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
60 |
39730 | 61 (require 'button) |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
62 (eval-when-compile (require 'cl)) |
39730 | 63 |
18941 | 64 (defgroup apropos nil |
63999
7c759dd7ab37
(apropos): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
60483
diff
changeset
|
65 "Apropos commands for users and programmers." |
25297
bbfc1bd58fcc
Don't capitalize custom group name.
Dave Love <fx@gnu.org>
parents:
23867
diff
changeset
|
66 :group 'help |
18941 | 67 :prefix "apropos") |
68 | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
69 ;; I see a degradation of maybe 10-20% only. |
18941 | 70 (defcustom apropos-do-all nil |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
71 "*Whether the apropos commands should do more. |
18941 | 72 |
73 Slows them down more or less. Set this non-nil if you have a fast machine." | |
74 :group 'apropos | |
75 :type 'boolean) | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
76 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
77 |
25752
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
78 (defcustom apropos-symbol-face 'bold |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
79 "*Face for symbol name in Apropos output, or nil for none." |
18941 | 80 :group 'apropos |
81 :type 'face) | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
82 |
25752
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
83 (defcustom apropos-keybinding-face 'underline |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
84 "*Face for lists of keybinding in Apropos output, or nil for none." |
18941 | 85 :group 'apropos |
86 :type 'face) | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
87 |
25752
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
88 (defcustom apropos-label-face 'italic |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
89 "*Face for label (`Command', `Variable' ...) in Apropos output. |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
90 A value of nil means don't use any special font for them, and also |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
91 turns off mouse highlighting." |
18941 | 92 :group 'apropos |
93 :type 'face) | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
94 |
25752
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
95 (defcustom apropos-property-face 'bold-italic |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
96 "*Face for property name in apropos output, or nil for none." |
18941 | 97 :group 'apropos |
98 :type 'face) | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
99 |
58989
b41192af5b23
(apropos-match-face): Change default from `secondary-selection' to `match'.
Juri Linkov <juri@jurta.org>
parents:
57750
diff
changeset
|
100 (defcustom apropos-match-face 'match |
25752
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
101 "*Face for matching text in Apropos documentation/value, or nil for none. |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
102 This applies when you look for matches in the documentation or variable value |
bb28bbb732db
(apropos-symbol-face): Non-nil even for ttys.
Richard M. Stallman <rms@gnu.org>
parents:
25297
diff
changeset
|
103 for the regexp; the part that matches gets displayed in this font." |
18941 | 104 :group 'apropos |
105 :type 'face) | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
106 |
51933
8604d171445a
(apropos-sort-by-scores): Rename from apropos-show-scores.
Kim F. Storm <storm@cua.dk>
parents:
51884
diff
changeset
|
107 (defcustom apropos-sort-by-scores nil |
8604d171445a
(apropos-sort-by-scores): Rename from apropos-show-scores.
Kim F. Storm <storm@cua.dk>
parents:
51884
diff
changeset
|
108 "*Non-nil means sort matches by scores; best match is shown first. |
8604d171445a
(apropos-sort-by-scores): Rename from apropos-show-scores.
Kim F. Storm <storm@cua.dk>
parents:
51884
diff
changeset
|
109 The computed score is shown for each match." |
51884
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
110 :group 'apropos |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
111 :type 'boolean) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
112 |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
113 (defvar apropos-mode-map |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
114 (let ((map (make-sparse-keymap))) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
115 (set-keymap-parent map button-buffer-map) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
116 ;; Use `apropos-follow' instead of just using the button |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
117 ;; definition of RET, so that users can use it anywhere in an |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
118 ;; apropos item, not just on top of a button. |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
119 (define-key map "\C-m" 'apropos-follow) |
21897
7f104a4fc567
(apropos-mode-map): Bind q to quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
20508
diff
changeset
|
120 (define-key map " " 'scroll-up) |
7f104a4fc567
(apropos-mode-map): Bind q to quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
20508
diff
changeset
|
121 (define-key map "\177" 'scroll-down) |
7f104a4fc567
(apropos-mode-map): Bind q to quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
20508
diff
changeset
|
122 (define-key map "q" 'quit-window) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
123 map) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
124 "Keymap used in Apropos mode.") |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
125 |
29498 | 126 (defvar apropos-mode-hook nil |
127 "*Hook run when mode is turned on.") | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
128 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
129 (defvar apropos-regexp nil |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
130 "Regexp used in current apropos run.") |
367 | 131 |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
132 (defvar apropos-orig-regexp nil |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
133 "Regexp as entered by user.") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
134 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
135 (defvar apropos-all-regexp nil |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
136 "Regexp matching apropos-all-words.") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
137 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
138 (defvar apropos-files-scanned () |
13965
3453c54100b5
(apropos-files-scanned): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13752
diff
changeset
|
139 "List of elc files already scanned in current run of `apropos-documentation'.") |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
140 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
141 (defvar apropos-accumulator () |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
142 "Alist of symbols already found in current apropos run.") |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
143 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
144 (defvar apropos-item () |
29764 | 145 "Current item in or for `apropos-accumulator'.") |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
146 |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
147 (defvar apropos-synonyms '( |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
148 ("find" "open" "edit") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
149 ("kill" "cut") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
150 ("yank" "paste")) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
151 "List of synonyms known by apropos. |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
152 Each element is a list of words where the first word is the standard emacs |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
153 term, and the rest of the words are alternative terms.") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
154 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
155 (defvar apropos-words () |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
156 "Current list of words.") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
157 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
158 (defvar apropos-all-words () |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
159 "Current list of words and synonyms.") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
160 |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
161 |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
162 ;;; Button types used by apropos |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
163 |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
164 (define-button-type 'apropos-symbol |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
165 'face apropos-symbol-face |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
166 'help-echo "mouse-2, RET: Display more help on this symbol" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
167 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
168 'action #'apropos-symbol-button-display-help |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
169 'skip t) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
170 |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
171 (defun apropos-symbol-button-display-help (button) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
172 "Display further help for the `apropos-symbol' button BUTTON." |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
173 (button-activate |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
174 (or (apropos-next-label-button (button-start button)) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
175 (error "There is nothing to follow for `%s'" (button-label button))))) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
176 |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
177 (define-button-type 'apropos-function |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
178 'apropos-label "Function" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
179 'help-echo "mouse-2, RET: Display more help on this function" |
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
180 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
181 'action (lambda (button) |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
182 (describe-function (button-get button 'apropos-symbol)))) |
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
183 |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
184 (define-button-type 'apropos-macro |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
185 'apropos-label "Macro" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
186 'help-echo "mouse-2, RET: Display more help on this macro" |
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
187 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
188 'action (lambda (button) |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
189 (describe-function (button-get button 'apropos-symbol)))) |
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
190 |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
191 (define-button-type 'apropos-command |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
192 'apropos-label "Command" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
193 'help-echo "mouse-2, RET: Display more help on this command" |
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
194 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
195 'action (lambda (button) |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
196 (describe-function (button-get button 'apropos-symbol)))) |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
42256
diff
changeset
|
197 |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
198 ;; We used to use `customize-variable-other-window' instead for a |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
199 ;; customizable variable, but that is slow. It is better to show an |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
200 ;; ordinary help buffer and let the user click on the customization |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
201 ;; button in that buffer, if he wants to. |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
202 ;; Likewise for `customize-face-other-window'. |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
203 (define-button-type 'apropos-variable |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
204 'apropos-label "Variable" |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
205 'help-echo "mouse-2, RET: Display more help on this variable" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
206 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
207 'action (lambda (button) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
208 (describe-variable (button-get button 'apropos-symbol)))) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
209 |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
210 (define-button-type 'apropos-face |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
211 'apropos-label "Face" |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
212 'help-echo "mouse-2, RET: Display more help on this face" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
213 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
214 'action (lambda (button) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
215 (describe-face (button-get button 'apropos-symbol)))) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
216 |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
217 (define-button-type 'apropos-group |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
218 'apropos-label "Group" |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
219 'help-echo "mouse-2, RET: Display more help on this group" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
220 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
221 'action (lambda (button) |
47960
ba7e99fa7b11
(apropos-group): Use customize-group-other-window.
Andreas Schwab <schwab@suse.de>
parents:
47024
diff
changeset
|
222 (customize-group-other-window |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
223 (button-get button 'apropos-symbol)))) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
224 |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
225 (define-button-type 'apropos-widget |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
226 'apropos-label "Widget" |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
227 'help-echo "mouse-2, RET: Display more help on this widget" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
228 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
229 'action (lambda (button) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
230 (widget-browse-other-window (button-get button 'apropos-symbol)))) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
231 |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
232 (define-button-type 'apropos-plist |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
233 'apropos-label "Plist" |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
234 'help-echo "mouse-2, RET: Display more help on this plist" |
59021
cef0d0d34987
(apropos-symbol, apropos-function, apropos-macro)
Kim F. Storm <storm@cua.dk>
parents:
58989
diff
changeset
|
235 'follow-link t |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
236 'action (lambda (button) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
237 (apropos-describe-plist (button-get button 'apropos-symbol)))) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
238 |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
239 (defun apropos-next-label-button (pos) |
41154
dfe41fbdcaa0
(apropos-next-label-button): Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents:
39730
diff
changeset
|
240 "Return the next apropos label button after POS, or nil if there's none. |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
241 Will also return nil if more than one `apropos-symbol' button is encountered |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
242 before finding a label." |
39669
149659ed7eca
(apropos-next-label-button): Update arguments to `next-button'.
Miles Bader <miles@gnu.org>
parents:
39649
diff
changeset
|
243 (let* ((button (next-button pos t)) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
244 (already-hit-symbol nil) |
39706
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
245 (label (and button (button-get button 'apropos-label))) |
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
246 (type (and button (button-get button 'type)))) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
247 (while (and button |
39706
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
248 (not label) |
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
249 (or (not (eq type 'apropos-symbol)) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
250 (not already-hit-symbol))) |
39706
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
251 (when (eq type 'apropos-symbol) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
252 (setq already-hit-symbol t)) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
253 (setq button (next-button (button-start button))) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
254 (when button |
39706
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
255 (setq label (button-get button 'apropos-label)) |
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
256 (setq type (button-get button 'type)))) |
4825323bc19f
(apropos-next-label-button): Use the presence of a
Miles Bader <miles@gnu.org>
parents:
39677
diff
changeset
|
257 (and label button))) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
258 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
259 |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
260 (defun apropos-words-to-regexp (words wild) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
261 "Make regexp matching any two of the words in WORDS." |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
262 (concat "\\(" |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
263 (mapconcat 'identity words "\\|") |
52101
f3610e8bfe2d
(apropos-words-to-regexp): Only add `wild' if
Andreas Schwab <schwab@suse.de>
parents:
51933
diff
changeset
|
264 "\\)" |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
265 (if (cdr words) |
52101
f3610e8bfe2d
(apropos-words-to-regexp): Only add `wild' if
Andreas Schwab <schwab@suse.de>
parents:
51933
diff
changeset
|
266 (concat wild |
f3610e8bfe2d
(apropos-words-to-regexp): Only add `wild' if
Andreas Schwab <schwab@suse.de>
parents:
51933
diff
changeset
|
267 "\\(" |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
268 (mapconcat 'identity words "\\|") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
269 "\\)") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
270 ""))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
271 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
272 (defun apropos-rewrite-regexp (regexp) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
273 "Rewrite a list of words to a regexp matching all permutations. |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
274 If REGEXP is already a regexp, don't modify it." |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
275 (setq apropos-orig-regexp regexp) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
276 (setq apropos-words () apropos-all-words ()) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
277 (if (string-equal (regexp-quote regexp) regexp) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
278 ;; We don't actually make a regexp matching all permutations. |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
279 ;; Instead, for e.g. "a b c", we make a regexp matching |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
280 ;; any combination of two or more words like this: |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
281 ;; (a|b|c).*(a|b|c) which may give some false matches, |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
282 ;; but as long as it also gives the right ones, that's ok. |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
283 (let ((words (split-string regexp "[ \t]+"))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
284 (dolist (word words) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
285 (let ((syn apropos-synonyms) (s word) (a word)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
286 (while syn |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
287 (if (member word (car syn)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
288 (progn |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
289 (setq a (mapconcat 'identity (car syn) "\\|")) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
290 (if (member word (cdr (car syn))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
291 (setq s a)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
292 (setq syn nil)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
293 (setq syn (cdr syn)))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
294 (setq apropos-words (cons s apropos-words) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
295 apropos-all-words (cons a apropos-all-words)))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
296 (setq apropos-all-regexp (apropos-words-to-regexp apropos-all-words ".+")) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
297 (apropos-words-to-regexp apropos-words ".*?")) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
298 (setq apropos-all-regexp regexp))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
299 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
300 (defun apropos-calc-scores (str words) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
301 "Return apropos scores for string STR matching WORDS. |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
302 Value is a list of offsets of the words into the string." |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
303 (let ((scores ()) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
304 i) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
305 (if words |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
306 (dolist (word words scores) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
307 (if (setq i (string-match word str)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
308 (setq scores (cons i scores)))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
309 ;; Return list of start and end position of regexp |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
310 (string-match apropos-regexp str) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
311 (list (match-beginning 0) (match-end 0))))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
312 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
313 (defun apropos-score-str (str) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
314 "Return apropos score for string STR." |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
315 (if str |
45484
642d016eb216
Only reduce string score for lengthy strings once.
Kim F. Storm <storm@cua.dk>
parents:
45482
diff
changeset
|
316 (let* ( |
642d016eb216
Only reduce string score for lengthy strings once.
Kim F. Storm <storm@cua.dk>
parents:
45482
diff
changeset
|
317 (l (length str)) |
642d016eb216
Only reduce string score for lengthy strings once.
Kim F. Storm <storm@cua.dk>
parents:
45482
diff
changeset
|
318 (score (- (/ l 10))) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
319 i) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
320 (dolist (s (apropos-calc-scores str apropos-all-words) score) |
45484
642d016eb216
Only reduce string score for lengthy strings once.
Kim F. Storm <storm@cua.dk>
parents:
45482
diff
changeset
|
321 (setq score (+ score 1000 (/ (* (- l s) 1000) l))))) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
322 0)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
323 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
324 (defun apropos-score-doc (doc) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
325 "Return apropos score for documentation string DOC." |
60018
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
326 (let ((l (length doc))) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
327 (if (> l 0) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
328 (let ((score 0) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
329 i) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
330 (dolist (s (apropos-calc-scores doc apropos-all-words) score) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
331 (setq score (+ score 50 (/ (* (- l s) 50) l))))) |
253d4187af2d
(apropos-score-doc): Prevent division by zero.
Lute Kamstra <lute@gnu.org>
parents:
59021
diff
changeset
|
332 0))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
333 |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
334 (defun apropos-score-symbol (symbol &optional weight) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
335 "Return apropos score for SYMBOL." |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
336 (setq symbol (symbol-name symbol)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
337 (let ((score 0) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
338 (l (length symbol)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
339 i) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
340 (dolist (s (apropos-calc-scores symbol apropos-words) (* score (or weight 3))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
341 (setq score (+ score (- 60 l) (/ (* (- l s) 60) l)))))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
342 |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
343 (defun apropos-true-hit (str words) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
344 "Return t if STR is a genuine hit. |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
345 This may fail if only one of the keywords is matched more than once. |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
346 This requires that at least 2 keywords (unless only one was given)." |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
347 (or (not str) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
348 (not words) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
349 (not (cdr words)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
350 (> (length (apropos-calc-scores str words)) 1))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
351 |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
352 (defun apropos-false-hit-symbol (symbol) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
353 "Return t if SYMBOL is not really matched by the current keywords." |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
354 (not (apropos-true-hit (symbol-name symbol) apropos-words))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
355 |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
356 (defun apropos-false-hit-str (str) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
357 "Return t if STR is not really matched by the current keywords." |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
358 (not (apropos-true-hit str apropos-words))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
359 |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
360 (defun apropos-true-hit-doc (doc) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
361 "Return t if DOC is really matched by the current keywords." |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
362 (apropos-true-hit doc apropos-all-words)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
363 |
32147
f7c3f0fff3e7
(apropos-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29764
diff
changeset
|
364 (define-derived-mode apropos-mode fundamental-mode "Apropos" |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
365 "Major mode for following hyperlinks in output of apropos commands. |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
366 |
32147
f7c3f0fff3e7
(apropos-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29764
diff
changeset
|
367 \\{apropos-mode-map}") |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
368 |
20335
445110a43268
(apropos-variable): New command.
Richard M. Stallman <rms@gnu.org>
parents:
20208
diff
changeset
|
369 ;;;###autoload |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
370 (defun apropos-variable (regexp &optional do-all) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
371 "Show user variables that match REGEXP. |
29764 | 372 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also show |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
373 normal variables." |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
374 (interactive (list (read-string |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
375 (concat "Apropos " |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
376 (if (or current-prefix-arg apropos-do-all) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
377 "variable" |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
378 "user option") |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
379 " (regexp or words): ")) |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
380 current-prefix-arg)) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
381 (apropos-command regexp nil |
22326
a049e7c748d9
(apropos-variable): Fixed argument to apropos-command.
Karl Heuer <kwzh@gnu.org>
parents:
22219
diff
changeset
|
382 (if (or do-all apropos-do-all) |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
383 #'(lambda (symbol) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
384 (and (boundp symbol) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
385 (get symbol 'variable-documentation))) |
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
386 'user-variable-p))) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
387 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
388 ;; For auld lang syne: |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
389 ;;;###autoload |
47024
15430c8d0eaa
* startup.el (normal-splash-screen): Ensure splash buffer is
John Paul Wallington <jpw@pobox.com>
parents:
45488
diff
changeset
|
390 (defalias 'command-apropos 'apropos-command) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
391 ;;;###autoload |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
392 (defun apropos-command (apropos-regexp &optional do-all var-predicate) |
29764 | 393 "Show commands (interactively callable functions) that match APROPOS-REGEXP. |
394 With optional prefix DO-ALL, or if `apropos-do-all' is non-nil, also show | |
22219
0d635ed37f07
(apropos-command): If DO-ALL is set, search functions, not variables.
Richard M. Stallman <rms@gnu.org>
parents:
22218
diff
changeset
|
395 noninteractive functions. |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
396 |
22219
0d635ed37f07
(apropos-command): If DO-ALL is set, search functions, not variables.
Richard M. Stallman <rms@gnu.org>
parents:
22218
diff
changeset
|
397 If VAR-PREDICATE is non-nil, show only variables, and only those that |
22218
eb4deede0c5a
(apropos-command): Change 3rd arg to VAR-PREDICATE
Richard M. Stallman <rms@gnu.org>
parents:
22182
diff
changeset
|
398 satisfy the predicate VAR-PREDICATE." |
20335
445110a43268
(apropos-variable): New command.
Richard M. Stallman <rms@gnu.org>
parents:
20208
diff
changeset
|
399 (interactive (list (read-string (concat |
445110a43268
(apropos-variable): New command.
Richard M. Stallman <rms@gnu.org>
parents:
20208
diff
changeset
|
400 "Apropos command " |
445110a43268
(apropos-variable): New command.
Richard M. Stallman <rms@gnu.org>
parents:
20208
diff
changeset
|
401 (if (or current-prefix-arg |
445110a43268
(apropos-variable): New command.
Richard M. Stallman <rms@gnu.org>
parents:
20208
diff
changeset
|
402 apropos-do-all) |
22219
0d635ed37f07
(apropos-command): If DO-ALL is set, search functions, not variables.
Richard M. Stallman <rms@gnu.org>
parents:
22218
diff
changeset
|
403 "or function ") |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
404 "(regexp or words): ")) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
405 current-prefix-arg)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
406 (setq apropos-regexp (apropos-rewrite-regexp apropos-regexp)) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
407 (let ((message |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
408 (let ((standard-output (get-buffer-create "*Apropos*"))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
409 (print-help-return-message 'identity)))) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
410 (or do-all (setq do-all apropos-do-all)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
411 (setq apropos-accumulator |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
412 (apropos-internal apropos-regexp |
22326
a049e7c748d9
(apropos-variable): Fixed argument to apropos-command.
Karl Heuer <kwzh@gnu.org>
parents:
22219
diff
changeset
|
413 (or var-predicate |
a049e7c748d9
(apropos-variable): Fixed argument to apropos-command.
Karl Heuer <kwzh@gnu.org>
parents:
22219
diff
changeset
|
414 (if do-all 'functionp 'commandp)))) |
20480
048c8ad9bcaa
(apropos, apropos-command): Ignore symbols that have apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents:
20335
diff
changeset
|
415 (let ((tem apropos-accumulator)) |
048c8ad9bcaa
(apropos, apropos-command): Ignore symbols that have apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents:
20335
diff
changeset
|
416 (while tem |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
417 (if (or (get (car tem) 'apropos-inhibit) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
418 (apropos-false-hit-symbol (car tem))) |
20480
048c8ad9bcaa
(apropos, apropos-command): Ignore symbols that have apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents:
20335
diff
changeset
|
419 (setq apropos-accumulator (delq (car tem) apropos-accumulator))) |
048c8ad9bcaa
(apropos, apropos-command): Ignore symbols that have apropos-inhibit property.
Richard M. Stallman <rms@gnu.org>
parents:
20335
diff
changeset
|
420 (setq tem (cdr tem)))) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
421 (let ((p apropos-accumulator) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
422 doc symbol score) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
423 (while p |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
424 (setcar p (list |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
425 (setq symbol (car p)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
426 (setq score (apropos-score-symbol symbol)) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
427 (unless var-predicate |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
428 (if (functionp symbol) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
429 (if (setq doc (documentation symbol t)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
430 (progn |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
431 (setq score (+ score (apropos-score-doc doc))) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
432 (substring doc 0 (string-match "\n" doc))) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
433 "(not documented)"))) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
434 (and var-predicate |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
435 (funcall var-predicate symbol) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
436 (if (setq doc (documentation-property |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
437 symbol 'variable-documentation t)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
438 (progn |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
439 (setq score (+ score (apropos-score-doc doc))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
440 (substring doc 0 |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
441 (string-match "\n" doc))))))) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
442 (setcar (cdr (car p)) score) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
443 (setq p (cdr p)))) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
444 (and (apropos-print t nil) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
445 message |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
446 (message "%s" message)))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
447 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
448 |
367 | 449 ;;;###autoload |
49190
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
450 (defun apropos-documentation-property (symbol property raw) |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
451 "Like (documentation-property SYMBOL PROPERTY RAW) but handle errors." |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
452 (condition-case () |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
453 (let ((doc (documentation-property symbol property raw))) |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
454 (if doc (substring doc 0 (string-match "\n" doc)) |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
455 "(not documented)")) |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
456 (error "(error retrieving documentation)"))) |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
457 |
49231
1cc18f262eab
(apropos): Restore autoload cookie. Fix error
John Paul Wallington <jpw@pobox.com>
parents:
49190
diff
changeset
|
458 |
1cc18f262eab
(apropos): Restore autoload cookie. Fix error
John Paul Wallington <jpw@pobox.com>
parents:
49190
diff
changeset
|
459 ;;;###autoload |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
460 (defun apropos (apropos-regexp &optional do-all) |
29764 | 461 "Show all bound symbols whose names match APROPOS-REGEXP. |
462 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also | |
463 show unbound symbols and key bindings, which is a little more | |
464 time-consuming. Returns list of symbols and documentation found." | |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
465 (interactive "sApropos symbol (regexp or words): \nP") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
466 (setq apropos-regexp (apropos-rewrite-regexp apropos-regexp)) |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
467 (apropos-symbols-internal |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
468 (apropos-internal apropos-regexp |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
469 (and (not do-all) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
470 (not apropos-do-all) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
471 (lambda (symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
472 (or (fboundp symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
473 (boundp symbol) |
17417
c351a7e1880c
(apropos): Add support for faces, widgets, and user options.
Richard M. Stallman <rms@gnu.org>
parents:
17167
diff
changeset
|
474 (facep symbol) |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
475 (symbol-plist symbol))))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
476 (or do-all apropos-do-all))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
477 |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
478 (defun apropos-symbols-internal (symbols keys &optional text) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
479 ;; Filter out entries that are marked as apropos-inhibit. |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
480 (let ((all nil)) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
481 (dolist (symbol symbols) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
482 (unless (get symbol 'apropos-inhibit) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
483 (push symbol all))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
484 (setq symbols all)) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
485 (let ((apropos-accumulator |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
486 (mapcar |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
487 (lambda (symbol) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
488 (let (doc properties) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
489 (list |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
490 symbol |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
491 (apropos-score-symbol symbol) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
492 (when (fboundp symbol) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
493 (if (setq doc (condition-case nil |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
494 (documentation symbol t) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
495 (void-function |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
496 "(alias for undefined function)") |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
497 (error |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
498 "(can't retrieve function documentation)"))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
499 (substring doc 0 (string-match "\n" doc)) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
500 "(not documented)")) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
501 (when (boundp symbol) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
502 (apropos-documentation-property |
49190
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
503 symbol 'variable-documentation t)) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
504 (when (setq properties (symbol-plist symbol)) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
505 (setq doc (list (car properties))) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
506 (while (setq properties (cdr (cdr properties))) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
507 (setq doc (cons (car properties) doc))) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
508 (mapconcat #'symbol-name (nreverse doc) " ")) |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
509 (when (get symbol 'widget-type) |
49190
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
510 (apropos-documentation-property |
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
511 symbol 'widget-documentation t)) |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
512 (when (facep symbol) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
513 (apropos-documentation-property |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
514 symbol 'face-documentation t)) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
515 (when (get symbol 'custom-group) |
49190
bcb627207749
(apropos-documentation-property): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47960
diff
changeset
|
516 (apropos-documentation-property |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
517 symbol 'group-documentation t))))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
518 symbols))) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
519 (apropos-print keys nil text))) |
367 | 520 |
521 | |
522 ;;;###autoload | |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
523 (defun apropos-value (apropos-regexp &optional do-all) |
29764 | 524 "Show all symbols whose value's printed image matches APROPOS-REGEXP. |
525 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also looks | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
526 at the function and at the names and values of properties. |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
527 Returns list of symbols and values found." |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
528 (interactive "sApropos value (regexp or words): \nP") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
529 (setq apropos-regexp (apropos-rewrite-regexp apropos-regexp)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
530 (or do-all (setq do-all apropos-do-all)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
531 (setq apropos-accumulator ()) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
532 (let (f v p) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
533 (mapatoms |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
534 (lambda (symbol) |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
535 (setq f nil v nil p nil) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
536 (or (memq symbol '(apropos-regexp |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
537 apropos-orig-regexp apropos-all-regexp |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
538 apropos-words apropos-all-words |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
539 do-all apropos-accumulator |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
540 symbol f v p)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
541 (setq v (apropos-value-internal 'boundp symbol 'symbol-value))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
542 (if do-all |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
543 (setq f (apropos-value-internal 'fboundp symbol 'symbol-function) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
544 p (apropos-format-plist symbol "\n " t))) |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
545 (if (apropos-false-hit-str v) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
546 (setq v nil)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
547 (if (apropos-false-hit-str f) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
548 (setq f nil)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
549 (if (apropos-false-hit-str p) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
550 (setq p nil)) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
551 (if (or f v p) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
552 (setq apropos-accumulator (cons (list symbol |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
553 (+ (apropos-score-str f) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
554 (apropos-score-str v) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
555 (apropos-score-str p)) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
556 f v p) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
557 apropos-accumulator)))))) |
42256
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
558 (apropos-print nil "\n----------------\n")) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
559 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
560 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
561 ;;;###autoload |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
562 (defun apropos-documentation (apropos-regexp &optional do-all) |
29764 | 563 "Show symbols whose documentation contain matches for APROPOS-REGEXP. |
564 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also use | |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
565 documentation that is not stored in the documentation file and show key |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
566 bindings. |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
567 Returns list of symbols and documentation found." |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
568 (interactive "sApropos documentation (regexp or words): \nP") |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
569 (setq apropos-regexp (apropos-rewrite-regexp apropos-regexp)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
570 (or do-all (setq do-all apropos-do-all)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
571 (setq apropos-accumulator () apropos-files-scanned ()) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
572 (let ((standard-input (get-buffer-create " apropos-temp")) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
573 f v sf sv) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
574 (unwind-protect |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
575 (save-excursion |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
576 (set-buffer standard-input) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
577 (apropos-documentation-check-doc-file) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
578 (if do-all |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
579 (mapatoms |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
580 (lambda (symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
581 (setq f (apropos-safe-documentation symbol) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
582 v (get symbol 'variable-documentation)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
583 (if (integerp v) (setq v)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
584 (setq f (apropos-documentation-internal f) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
585 v (apropos-documentation-internal v)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
586 (setq sf (apropos-score-doc f) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
587 sv (apropos-score-doc v)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
588 (if (or f v) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
589 (if (setq apropos-item |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
590 (cdr (assq symbol apropos-accumulator))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
591 (progn |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
592 (if f |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
593 (progn |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
594 (setcar (nthcdr 1 apropos-item) f) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
595 (setcar apropos-item (+ (car apropos-item) sf)))) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
596 (if v |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
597 (progn |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
598 (setcar (nthcdr 2 apropos-item) v) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
599 (setcar apropos-item (+ (car apropos-item) sv))))) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
600 (setq apropos-accumulator |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
601 (cons (list symbol |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
602 (+ (apropos-score-symbol symbol 2) sf sv) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
603 f v) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
604 apropos-accumulator))))))) |
42256
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
605 (apropos-print nil "\n----------------\n")) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
606 (kill-buffer standard-input)))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
607 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
608 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
609 (defun apropos-value-internal (predicate symbol function) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
610 (if (funcall predicate symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
611 (progn |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
612 (setq symbol (prin1-to-string (funcall function symbol))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
613 (if (string-match apropos-regexp symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
614 (progn |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
615 (if apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
616 (put-text-property (match-beginning 0) (match-end 0) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
617 'face apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
618 symbol)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
619 symbol))))) |
367 | 620 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
621 (defun apropos-documentation-internal (doc) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
622 (if (consp doc) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
623 (apropos-documentation-check-elc-file (car doc)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
624 (and doc |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
625 (string-match apropos-all-regexp doc) |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
626 (save-match-data (apropos-true-hit-doc doc)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
627 (progn |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
628 (if apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
629 (put-text-property (match-beginning 0) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
630 (match-end 0) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
631 'face apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
632 (setq doc (copy-sequence doc)))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
633 doc)))) |
367 | 634 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
635 (defun apropos-format-plist (pl sep &optional compare) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
636 (setq pl (symbol-plist pl)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
637 (let (p p-out) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
638 (while pl |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
639 (setq p (format "%s %S" (car pl) (nth 1 pl))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
640 (if (or (not compare) (string-match apropos-regexp p)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
641 (if apropos-property-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
642 (put-text-property 0 (length (symbol-name (car pl))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
643 'face apropos-property-face p)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
644 (setq p nil)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
645 (if p |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
646 (progn |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
647 (and compare apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
648 (put-text-property (match-beginning 0) (match-end 0) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
649 'face apropos-match-face |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
650 p)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
651 (setq p-out (concat p-out (if p-out sep) p)))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
652 (setq pl (nthcdr 2 pl))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
653 p-out)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
654 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
655 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
656 ;; Finds all documentation related to APROPOS-REGEXP in internal-doc-file-name. |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
657 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
658 (defun apropos-documentation-check-doc-file () |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
659 (let (type symbol (sepa 2) sepb beg end) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
660 (insert ?\^_) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
661 (backward-char) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
662 (insert-file-contents (concat doc-directory internal-doc-file-name)) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
663 (forward-char) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
664 (while (save-excursion |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
665 (setq sepb (search-forward "\^_")) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
666 (not (eobp))) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
667 (beginning-of-line 2) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
668 (if (save-restriction |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
669 (narrow-to-region (point) (1- sepb)) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
670 (re-search-forward apropos-all-regexp nil t)) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
671 (progn |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
672 (setq beg (match-beginning 0) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
673 end (point)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
674 (goto-char (1+ sepa)) |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
675 (setq type (if (eq ?F (preceding-char)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
676 2 ; function documentation |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
677 3) ; variable documentation |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
678 symbol (read) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
679 beg (- beg (point) 1) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
680 end (- end (point) 1) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
681 doc (buffer-substring (1+ (point)) (1- sepb))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
682 (when (apropos-true-hit-doc doc) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
683 (or (and (setq apropos-item (assq symbol apropos-accumulator)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
684 (setcar (cdr apropos-item) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
685 (+ (cadr apropos-item) (apropos-score-doc doc)))) |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
686 (setq apropos-item (list symbol |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
687 (+ (apropos-score-symbol symbol 2) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
688 (apropos-score-doc doc)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
689 nil nil) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
690 apropos-accumulator (cons apropos-item |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
691 apropos-accumulator))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
692 (if apropos-match-face |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
693 (put-text-property beg end 'face apropos-match-face doc)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
694 (setcar (nthcdr type apropos-item) doc)))) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
695 (setq sepa (goto-char sepb))))) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
696 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
697 (defun apropos-documentation-check-elc-file (file) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
698 (if (member file apropos-files-scanned) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
699 nil |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
700 (let (symbol doc beg end this-is-a-variable) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
701 (setq apropos-files-scanned (cons file apropos-files-scanned)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
702 (erase-buffer) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
703 (insert-file-contents file) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
704 (while (search-forward "\n#@" nil t) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
705 ;; Read the comment length, and advance over it. |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
706 (setq end (read) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
707 beg (1+ (point)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
708 end (+ (point) end -1)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
709 (forward-char) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
710 (if (save-restriction |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
711 ;; match ^ and $ relative to doc string |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
712 (narrow-to-region beg end) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
713 (re-search-forward apropos-all-regexp nil t)) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
714 (progn |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
715 (goto-char (+ end 2)) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
716 (setq doc (buffer-substring beg end) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
717 end (- (match-end 0) beg) |
45488
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
718 beg (- (match-beginning 0) beg)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
719 (when (apropos-true-hit-doc doc) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
720 (setq this-is-a-variable (looking-at "(def\\(var\\|const\\) ") |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
721 symbol (progn |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
722 (skip-chars-forward "(a-z") |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
723 (forward-char) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
724 (read)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
725 symbol (if (consp symbol) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
726 (nth 1 symbol) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
727 symbol)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
728 (if (if this-is-a-variable |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
729 (get symbol 'variable-documentation) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
730 (and (fboundp symbol) (apropos-safe-documentation symbol))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
731 (progn |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
732 (or (and (setq apropos-item (assq symbol apropos-accumulator)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
733 (setcar (cdr apropos-item) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
734 (+ (cadr apropos-item) (apropos-score-doc doc)))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
735 (setq apropos-item (list symbol |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
736 (+ (apropos-score-symbol symbol 2) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
737 (apropos-score-doc doc)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
738 nil nil) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
739 apropos-accumulator (cons apropos-item |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
740 apropos-accumulator))) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
741 (if apropos-match-face |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
742 (put-text-property beg end 'face apropos-match-face |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
743 doc)) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
744 (setcar (nthcdr (if this-is-a-variable 3 2) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
745 apropos-item) |
7d28e8eeee0d
(apropos-true-hit, apropos-false-hit-symbol)
Kim F. Storm <storm@cua.dk>
parents:
45484
diff
changeset
|
746 doc)))))))))) |
367 | 747 |
10283
1d1c5ea9eb86
(super-apropos-check-elc-file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10282
diff
changeset
|
748 |
367 | 749 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
750 (defun apropos-safe-documentation (function) |
29764 | 751 "Like `documentation', except it avoids calling `get_doc_string'. |
367 | 752 Will return nil instead." |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
753 (while (and function (symbolp function)) |
367 | 754 (setq function (if (fboundp function) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
755 (symbol-function function)))) |
3563
804e4f30b7ce
(safe-documentation): Don't crash on byte-compiled macro.
Richard M. Stallman <rms@gnu.org>
parents:
2946
diff
changeset
|
756 (if (eq (car-safe function) 'macro) |
804e4f30b7ce
(safe-documentation): Don't crash on byte-compiled macro.
Richard M. Stallman <rms@gnu.org>
parents:
2946
diff
changeset
|
757 (setq function (cdr function))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
758 (setq function (if (byte-code-function-p function) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
759 (if (> (length function) 4) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
760 (aref function 4)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
761 (if (eq (car-safe function) 'autoload) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
762 (nth 2 function) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
763 (if (eq (car-safe function) 'lambda) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
764 (if (stringp (nth 2 function)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
765 (nth 2 function) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
766 (if (stringp (nth 3 function)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
767 (nth 3 function))))))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
768 (if (integerp function) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
769 nil |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
770 function)) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
771 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
772 |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
773 (defun apropos-print (do-keys spacing &optional text) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
774 "Output result of apropos searching into buffer `*Apropos*'. |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
775 The value of `apropos-accumulator' is the list of items to output. |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49231
diff
changeset
|
776 Each element should have the format |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
777 (SYMBOL SCORE FN-DOC VAR-DOC [PLIST-DOC WIDGET-DOC FACE-DOC GROUP-DOC]). |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
778 The return value is the list that was in `apropos-accumulator', sorted |
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
779 alphabetically by symbol name; but this function also sets |
42256
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
780 `apropos-accumulator' to nil before returning. |
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
781 |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
782 If SPACING is non-nil, it should be a string; separate items with that string. |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
783 If non-nil TEXT is a string that will be printed as a heading." |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
784 (if (null apropos-accumulator) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
785 (message "No apropos matches for `%s'" apropos-orig-regexp) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
786 (setq apropos-accumulator |
51884
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
787 (sort apropos-accumulator |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
788 (lambda (a b) |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
789 ;; Don't sort by score if user can't see the score. |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
790 ;; It would be confusing. -- rms. |
51933
8604d171445a
(apropos-sort-by-scores): Rename from apropos-show-scores.
Kim F. Storm <storm@cua.dk>
parents:
51884
diff
changeset
|
791 (if apropos-sort-by-scores |
51884
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
792 (or (> (cadr a) (cadr b)) |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
793 (and (= (cadr a) (cadr b)) |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
794 (string-lessp (car a) (car b)))) |
58bf3c3670d8
(apropos-show-scores): Make it customizable. Document new meaning.
Richard M. Stallman <rms@gnu.org>
parents:
49588
diff
changeset
|
795 (string-lessp (car a) (car b)))))) |
13470
0bfd3ae57234
(apropos-print): Use buffer *Apropos*, not *Help*.
Richard M. Stallman <rms@gnu.org>
parents:
12640
diff
changeset
|
796 (with-output-to-temp-buffer "*Apropos*" |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
797 (let ((p apropos-accumulator) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
798 (old-buffer (current-buffer)) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
799 symbol item) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
800 (set-buffer standard-output) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
801 (apropos-mode) |
29199
cc07870ddb45
(apropos-print): Use display-mouse-p instead of
Eli Zaretskii <eliz@gnu.org>
parents:
28844
diff
changeset
|
802 (if (display-mouse-p) |
45115
237374f1a28e
(apropos-print): Fix the reference to mouse-2.
Eli Zaretskii <eliz@gnu.org>
parents:
42560
diff
changeset
|
803 (insert |
237374f1a28e
(apropos-print): Fix the reference to mouse-2.
Eli Zaretskii <eliz@gnu.org>
parents:
42560
diff
changeset
|
804 "If moving the mouse over text changes the text's color, " |
237374f1a28e
(apropos-print): Fix the reference to mouse-2.
Eli Zaretskii <eliz@gnu.org>
parents:
42560
diff
changeset
|
805 "you can click\n" |
237374f1a28e
(apropos-print): Fix the reference to mouse-2.
Eli Zaretskii <eliz@gnu.org>
parents:
42560
diff
changeset
|
806 "mouse-2 (second button from right) on that text to " |
237374f1a28e
(apropos-print): Fix the reference to mouse-2.
Eli Zaretskii <eliz@gnu.org>
parents:
42560
diff
changeset
|
807 "get more information.\n")) |
39491
1f81f55f4241
(apropos-print): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
39489
diff
changeset
|
808 (insert "In this buffer, go to the name of the command, or function," |
39489
464552acc8a0
(apropos-print): Make the directions inserted at the
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
809 " or variable,\n" |
464552acc8a0
(apropos-print): Make the directions inserted at the
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
810 (substitute-command-keys |
464552acc8a0
(apropos-print): Make the directions inserted at the
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
811 "and type \\[apropos-follow] to get full documentation.\n\n")) |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
812 (if text (insert text "\n\n")) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
813 (while (consp p) |
42256
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
814 (when (and spacing (not (bobp))) |
f06cb3ff301f
(apropos-print): SPACING is now nil or a separator string.
Richard M. Stallman <rms@gnu.org>
parents:
41154
diff
changeset
|
815 (princ spacing)) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
816 (setq apropos-item (car p) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
817 symbol (car apropos-item) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
818 p (cdr p)) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
819 (insert-text-button (symbol-name symbol) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
820 'type 'apropos-symbol |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
821 ;; Can't use default, since user may have |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
822 ;; changed the variable! |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
823 ;; Just say `no' to variables containing faces! |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
824 'face apropos-symbol-face) |
51933
8604d171445a
(apropos-sort-by-scores): Rename from apropos-show-scores.
Kim F. Storm <storm@cua.dk>
parents:
51884
diff
changeset
|
825 (if apropos-sort-by-scores |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
826 (insert " (" (number-to-string (cadr apropos-item)) ") ")) |
14395
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
827 ;; Calculate key-bindings if we want them. |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
828 (and do-keys |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
829 (commandp symbol) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
830 (indent-to 30 1) |
14395
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
831 (if (let ((keys |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
832 (save-excursion |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
833 (set-buffer old-buffer) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
834 (where-is-internal symbol))) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
835 filtered) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
836 ;; Copy over the list of key sequences, |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
837 ;; omitting any that contain a buffer or a frame. |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
838 (while keys |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
839 (let ((key (car keys)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
840 (i 0) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
841 loser) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
842 (while (< i (length key)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
843 (if (or (framep (aref key i)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
844 (bufferp (aref key i))) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
845 (setq loser t)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
846 (setq i (1+ i))) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
847 (or loser |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
848 (setq filtered (cons key filtered)))) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
849 (setq keys (cdr keys))) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
850 (setq item filtered)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
851 ;; Convert the remaining keys to a string and insert. |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
852 (insert |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
853 (mapconcat |
14395
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
854 (lambda (key) |
29764 | 855 (setq key (condition-case () |
23386
ac8f85b1733c
(apropos-print): control invalid characters.
Karl Heuer <kwzh@gnu.org>
parents:
22532
diff
changeset
|
856 (key-description key) |
ac8f85b1733c
(apropos-print): control invalid characters.
Karl Heuer <kwzh@gnu.org>
parents:
22532
diff
changeset
|
857 (error))) |
14395
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
858 (if apropos-keybinding-face |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
859 (put-text-property 0 (length key) |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
860 'face apropos-keybinding-face |
14395
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
861 key)) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
862 key) |
8e97dadccf2b
(apropos-print): Omit key sequences that contain a frame.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
863 item ", ")) |
60483
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
864 (insert "M-x ... RET") |
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
865 (when apropos-keybinding-face |
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
866 (put-text-property (- (point) 11) (- (point) 8) |
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
867 'face apropos-keybinding-face) |
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
868 (put-text-property (- (point) 3) (point) |
182ac86fdef1
(apropos-print): Omit command from M-x ... RET.
Kim F. Storm <storm@cua.dk>
parents:
60018
diff
changeset
|
869 'face apropos-keybinding-face)))) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
870 (terpri) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
871 (apropos-print-doc 2 |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
872 (if (commandp symbol) |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
873 'apropos-command |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
874 (if (apropos-macrop symbol) |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
875 'apropos-macro |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
876 'apropos-function)) |
20508
16f1fd128350
(apropos-print): Pass t instead of DO-KEYS
Richard M. Stallman <rms@gnu.org>
parents:
20480
diff
changeset
|
877 t) |
45482
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
878 (apropos-print-doc 3 'apropos-variable t) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
879 (apropos-print-doc 7 'apropos-group t) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
880 (apropos-print-doc 6 'apropos-face t) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
881 (apropos-print-doc 5 'apropos-widget t) |
7928b3acfb90
(apropos-show-scores, apropos-orig-regexp)
Kim F. Storm <storm@cua.dk>
parents:
45115
diff
changeset
|
882 (apropos-print-doc 4 'apropos-plist nil)) |
22532
5a83f0f3b29d
(apropos-print): Delete arg DOC-FN.
Karl Heuer <kwzh@gnu.org>
parents:
22408
diff
changeset
|
883 (setq buffer-read-only t)))) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
884 (prog1 apropos-accumulator |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
885 (setq apropos-accumulator ()))) ; permit gc |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
886 |
367 | 887 |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
888 (defun apropos-macrop (symbol) |
57750
5d7aec33a1ba
(apropos-macrop): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
54582
diff
changeset
|
889 "Return t if SYMBOL is a Lisp macro." |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
890 (and (fboundp symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
891 (consp (setq symbol |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
892 (symbol-function symbol))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
893 (or (eq (car symbol) 'macro) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
894 (if (eq (car symbol) 'autoload) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
895 (memq (nth 4 symbol) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
896 '(macro t)))))) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
897 |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
898 |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
899 (defun apropos-print-doc (i type do-keys) |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
900 (if (stringp (setq i (nth i apropos-item))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
901 (progn |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
902 (insert " ") |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
903 (insert-text-button (button-type-get type 'apropos-label) |
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
904 'type type |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
905 ;; Can't use the default button face, since |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
906 ;; user may have changed the variable! |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
907 ;; Just say `no' to variables containing faces! |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
908 'face apropos-label-face |
39677
05b7a0e7b426
(apropos-symbol): Add `skip' property.
Miles Bader <miles@gnu.org>
parents:
39669
diff
changeset
|
909 'apropos-symbol (car apropos-item)) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
910 (insert ": ") |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
911 (insert (if do-keys (substitute-command-keys i) i)) |
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
912 (or (bolp) (terpri))))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
913 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
914 |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
915 (defun apropos-follow () |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
916 "Invokes any button at point, otherwise invokes the nearest label button." |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
917 (interactive) |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
918 (button-activate |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
919 (or (apropos-next-label-button (line-beginning-position)) |
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
920 (error "There is nothing to follow here")))) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
921 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
922 |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
923 (defun apropos-describe-plist (symbol) |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
924 "Display a pretty listing of SYMBOL's plist." |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
925 (help-setup-xref (list 'apropos-describe-plist symbol) (interactive-p)) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
926 (with-output-to-temp-buffer (help-buffer) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
927 (set-buffer standard-output) |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
928 (princ "Symbol ") |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
929 (prin1 symbol) |
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
930 (princ "'s plist is\n (") |
12640
d194c63cb75c
Add latest changes of old library and some more.
Karl Heuer <kwzh@gnu.org>
parents:
12498
diff
changeset
|
931 (if apropos-symbol-face |
54582
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
932 (put-text-property (+ (point-min) 7) (- (point) 14) |
91f663907945
(apropos-mode): Don't autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
933 'face apropos-symbol-face)) |
12498
9fb6a9b6658b
Restructured, largely rewritten and extended.
Karl Heuer <kwzh@gnu.org>
parents:
11190
diff
changeset
|
934 (insert (apropos-format-plist symbol "\n ")) |
13752
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
935 (princ ")") |
e3b945c8141e
(apropos-match-face): Use `secondary-selection' rather
Karl Heuer <kwzh@gnu.org>
parents:
13656
diff
changeset
|
936 (print-help-return-message))) |
367 | 937 |
39649
7edeec63e660
(apropos-symbol, apropos-label): New button types.
Miles Bader <miles@gnu.org>
parents:
39491
diff
changeset
|
938 |
18383 | 939 (provide 'apropos) |
940 | |
52401 | 941 ;;; arch-tag: d56fa2ac-e56b-4ce3-84ff-852f9c0dc66e |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
942 ;;; apropos.el ends here |