# HG changeset patch # User Andreas Schwab # Date 1038785849 0 # Node ID 0da0660e632d8a6fe9e6bb18db328af707b1e7ed # Parent c5cefb537b8b4f73b7a857140f53a1ba1f4845d0 (mouse-wheel-scroll-amount): Fix customize type. diff -r c5cefb537b8b -r 0da0660e632d lisp/mwheel.el --- a/lisp/mwheel.el Sun Dec 01 23:16:57 2002 +0000 +++ b/lisp/mwheel.el Sun Dec 01 23:37:29 2002 +0000 @@ -111,7 +111,7 @@ (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 @@ (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 @@ (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.