]> git.eshelyaron.com Git - emacs.git/commitdiff
(mouse-wheel-scroll-amount): Revert previous change -
authorMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 9 Dec 2002 19:43:54 +0000 (19:43 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 9 Dec 2002 19:43:54 +0000 (19:43 +0000)
customize type 'float is now defined.

lisp/mwheel.el

index 8158db89731099e7fbf2f05cbf642fe420f8a568..546d27dd345d00845db2df9076a1c65e9cef225c 100644 (file)
@@ -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.