summaryrefslogtreecommitdiff
path: root/lisp/mwheel.el
diff options
context:
space:
mode:
authorMarkus Rost <rost@math.uni-bielefeld.de>2002-12-09 19:43:54 +0000
committerMarkus Rost <rost@math.uni-bielefeld.de>2002-12-09 19:43:54 +0000
commit055016a45345776fb193b8d861ced6ae58046b47 (patch)
treebd2c81e25c96fe6ad1d560e7aa1de5fe4ca09a89 /lisp/mwheel.el
parentf79b6dcc1077b371ba8a14fc7419438d0b9e33dd (diff)
downloademacs-055016a45345776fb193b8d861ced6ae58046b47.tar.gz
(mouse-wheel-scroll-amount): Revert previous change -
customize type 'float is now defined.
Diffstat (limited to 'lisp/mwheel.el')
-rw-r--r--lisp/mwheel.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mwheel.el b/lisp/mwheel.el
index 8158db89731..546d27dd345 100644
--- a/lisp/mwheel.el
+++ b/lisp/mwheel.el
@@ -111,7 +111,7 @@ less than a full screen."
(choice :tag "Normal"
(const :tag "Full screen" :value nil)
(integer :tag "Specific # of lines")
- (number :tag "Fraction of window")
+ (float :tag "Fraction of window")
(cons
(repeat (choice :tag "modifier"
(const alt) (const control) (const hyper)
@@ -119,7 +119,7 @@ less than a full screen."
(choice :tag "scroll amount"
(const :tag "Full screen" :value nil)
(integer :tag "Specific # of lines")
- (number :tag "Fraction of window"))))
+ (float :tag "Fraction of window"))))
(repeat
(cons
(repeat (choice :tag "modifier"
@@ -128,7 +128,7 @@ less than a full screen."
(choice :tag "scroll amount"
(const :tag "Full screen" :value nil)
(integer :tag "Specific # of lines")
- (number :tag "Fraction of window"))))))
+ (float :tag "Fraction of window"))))))
(defcustom mouse-wheel-progessive-speed t
"If non-nil, the faster the user moves the wheel, the faster the scrolling.