changeset 48609:0da0660e632d

(mouse-wheel-scroll-amount): Fix customize type.
author Andreas Schwab <schwab@suse.de>
date Sun, 01 Dec 2002 23:37:29 +0000
parents c5cefb537b8b
children 6d0d9fa39133
files lisp/mwheel.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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.