aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-24 07:43:07 +0000
committerRichard M. Stallman1997-07-24 07:43:07 +0000
commitddd2f740cd7d6613ede3c08f3e11a830951427c1 (patch)
tree419bfe59f1d3ce6842b30db190f03e3aa8129e72
parentae58b7adfb6a5063b1b674f0c655f5772296c48d (diff)
downloademacs-ddd2f740cd7d6613ede3c08f3e11a830951427c1.tar.gz
emacs-ddd2f740cd7d6613ede3c08f3e11a830951427c1.zip
Customized.
-rw-r--r--lisp/apropos.el44
1 files changed, 31 insertions, 13 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index 52cf9a2fb36..34691a97744 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -57,34 +57,52 @@
57 57
58;;; Code: 58;;; Code:
59 59
60(defgroup apropos nil
61 "Apropos commands for users and programmers"
62 :group 'Help
63 :prefix "apropos")
64
60;; I see a degradation of maybe 10-20% only. 65;; I see a degradation of maybe 10-20% only.
61(defvar apropos-do-all nil 66(defcustom apropos-do-all nil
62 "*Whether the apropos commands should do more. 67 "*Whether the apropos commands should do more.
63Slows them down more or less. Set this non-nil if you have a fast machine.") 68
69Slows them down more or less. Set this non-nil if you have a fast machine."
70 :group 'apropos
71 :type 'boolean)
64 72
65 73
66(defvar apropos-symbol-face (if window-system 'bold) 74(defcustom apropos-symbol-face (if window-system 'bold)
67 "*Face for symbol name in apropos output or `nil'. 75 "*Face for symbol name in apropos output or `nil'.
68This looks good, but slows down the commands several times.") 76This looks good, but slows down the commands several times."
77 :group 'apropos
78 :type 'face)
69 79
70(defvar apropos-keybinding-face (if window-system 'underline) 80(defcustom apropos-keybinding-face (if window-system 'underline)
71 "*Face for keybinding display in apropos output or `nil'. 81 "*Face for keybinding display in apropos output or `nil'.
72This looks good, but slows down the commands several times.") 82This looks good, but slows down the commands several times."
83 :group 'apropos
84 :type 'face)
73 85
74(defvar apropos-label-face (if window-system 'italic) 86(defcustom apropos-label-face (if window-system 'italic)
75 "*Face for label (Command, Variable ...) in apropos output or `nil'. 87 "*Face for label (Command, Variable ...) in apropos output or `nil'.
76If this is `nil' no mouse highlighting occurs. 88If this is `nil' no mouse highlighting occurs.
77This looks good, but slows down the commands several times. 89This looks good, but slows down the commands several times.
78When this is a face name, as it is initially, it gets transformed to a 90When this is a face name, as it is initially, it gets transformed to a
79text-property list for efficiency.") 91text-property list for efficiency."
92 :group 'apropos
93 :type 'face)
80 94
81(defvar apropos-property-face (if window-system 'bold-italic) 95(defcustom apropos-property-face (if window-system 'bold-italic)
82 "*Face for property name in apropos output or `nil'. 96 "*Face for property name in apropos output or `nil'.
83This looks good, but slows down the commands several times.") 97This looks good, but slows down the commands several times."
98 :group 'apropos
99 :type 'face)
84 100
85(defvar apropos-match-face (if window-system 'secondary-selection) 101(defcustom apropos-match-face (if window-system 'secondary-selection)
86 "*Face for matching part in apropos-documentation/value output or `nil'. 102 "*Face for matching part in apropos-documentation/value output or `nil'.
87This looks good, but slows down the commands several times.") 103This looks good, but slows down the commands several times."
104 :group 'apropos
105 :type 'face)
88 106
89 107
90(defvar apropos-mode-map 108(defvar apropos-mode-map