aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2002-12-01 23:37:29 +0000
committerAndreas Schwab2002-12-01 23:37:29 +0000
commitdd60908b897b60f0d351d92f885765cd45e93458 (patch)
tree0d31c0d1c89a991110c05ed075c0eb0744fe4737
parent5213c97dc555b4541a48c072d4d7a73d04a0c865 (diff)
downloademacs-dd60908b897b60f0d351d92f885765cd45e93458.tar.gz
emacs-dd60908b897b60f0d351d92f885765cd45e93458.zip
(mouse-wheel-scroll-amount): Fix customize type.
-rw-r--r--lisp/mwheel.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mwheel.el b/lisp/mwheel.el
index 546d27dd345..8158db89731 100644
--- a/lisp/mwheel.el
+++ b/lisp/mwheel.el
@@ -111,7 +111,7 @@ less than a full screen."
111 (choice :tag "Normal" 111 (choice :tag "Normal"
112 (const :tag "Full screen" :value nil) 112 (const :tag "Full screen" :value nil)
113 (integer :tag "Specific # of lines") 113 (integer :tag "Specific # of lines")
114 (float :tag "Fraction of window") 114 (number :tag "Fraction of window")
115 (cons 115 (cons
116 (repeat (choice :tag "modifier" 116 (repeat (choice :tag "modifier"
117 (const alt) (const control) (const hyper) 117 (const alt) (const control) (const hyper)
@@ -119,7 +119,7 @@ less than a full screen."
119 (choice :tag "scroll amount" 119 (choice :tag "scroll amount"
120 (const :tag "Full screen" :value nil) 120 (const :tag "Full screen" :value nil)
121 (integer :tag "Specific # of lines") 121 (integer :tag "Specific # of lines")
122 (float :tag "Fraction of window")))) 122 (number :tag "Fraction of window"))))
123 (repeat 123 (repeat
124 (cons 124 (cons
125 (repeat (choice :tag "modifier" 125 (repeat (choice :tag "modifier"
@@ -128,7 +128,7 @@ less than a full screen."
128 (choice :tag "scroll amount" 128 (choice :tag "scroll amount"
129 (const :tag "Full screen" :value nil) 129 (const :tag "Full screen" :value nil)
130 (integer :tag "Specific # of lines") 130 (integer :tag "Specific # of lines")
131 (float :tag "Fraction of window")))))) 131 (number :tag "Fraction of window"))))))
132 132
133(defcustom mouse-wheel-progessive-speed t 133(defcustom mouse-wheel-progessive-speed t
134 "If non-nil, the faster the user moves the wheel, the faster the scrolling. 134 "If non-nil, the faster the user moves the wheel, the faster the scrolling.