From: Andreas Schwab Date: Sun, 1 Dec 2002 23:37:29 +0000 (+0000) Subject: (mouse-wheel-scroll-amount): Fix customize type. X-Git-Tag: ttn-vms-21-2-B4~12213 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dd60908b897b60f0d351d92f885765cd45e93458;p=emacs.git (mouse-wheel-scroll-amount): Fix customize type. --- 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." (choice :tag "Normal" (const :tag "Full screen" :value nil) (integer :tag "Specific # of lines") - (float :tag "Fraction of window") + (number :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") - (float :tag "Fraction of window")))) + (number :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") - (float :tag "Fraction of window")))))) + (number :tag "Fraction of window")))))) (defcustom mouse-wheel-progessive-speed t "If non-nil, the faster the user moves the wheel, the faster the scrolling.