mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-21 06:55:39 +00:00
Fix :type of some user options
* lisp/which-key.el: * lisp/progmodes/python.el: * lisp/play/animate.el: * lisp/pixel-scroll.el: * lisp/image/image-dired.el: * lisp/htmlfontify.el: Change :type of user options from 'float' to 'number' where integer values make sense. (Bug#73098)
This commit is contained in:
parent
8081c08ff1
commit
4073c62437
@ -766,7 +766,7 @@ may happen."
|
|||||||
|
|
||||||
(defcustom hfy-font-zoom 1.05
|
(defcustom hfy-font-zoom 1.05
|
||||||
"Font scaling from Emacs to HTML."
|
"Font scaling from Emacs to HTML."
|
||||||
:type 'float)
|
:type 'number)
|
||||||
|
|
||||||
(defun hfy-size (height)
|
(defun hfy-size (height)
|
||||||
"Derive a CSS font-size specifier from an Emacs font :height attribute HEIGHT.
|
"Derive a CSS font-size specifier from an Emacs font :height attribute HEIGHT.
|
||||||
|
@ -1078,7 +1078,7 @@ Resized or in full-size."
|
|||||||
(defcustom image-dired-slideshow-delay 5.0
|
(defcustom image-dired-slideshow-delay 5.0
|
||||||
"Seconds to wait before showing the next image in a slideshow.
|
"Seconds to wait before showing the next image in a slideshow.
|
||||||
This is used by `image-dired-slideshow-start'."
|
This is used by `image-dired-slideshow-start'."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(define-obsolete-variable-alias 'image-dired-slideshow-timer
|
(define-obsolete-variable-alias 'image-dired-slideshow-timer
|
||||||
|
@ -161,22 +161,22 @@ This is only effective if supported by your mouse or touchpad."
|
|||||||
|
|
||||||
(defcustom pixel-scroll-precision-momentum-tick 0.01
|
(defcustom pixel-scroll-precision-momentum-tick 0.01
|
||||||
"Number of seconds between each momentum scroll."
|
"Number of seconds between each momentum scroll."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-momentum-seconds 1.75
|
(defcustom pixel-scroll-precision-momentum-seconds 1.75
|
||||||
"The maximum duration in seconds of momentum scrolling."
|
"The maximum duration in seconds of momentum scrolling."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-momentum-min-velocity 10.0
|
(defcustom pixel-scroll-precision-momentum-min-velocity 10.0
|
||||||
"The minimum scrolled pixels per second before momentum scrolling starts."
|
"The minimum scrolled pixels per second before momentum scrolling starts."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-initial-velocity-factor (/ 0.0335 4)
|
(defcustom pixel-scroll-precision-initial-velocity-factor (/ 0.0335 4)
|
||||||
"Factor applied to the initial velocity before momentum scrolling begins."
|
"Factor applied to the initial velocity before momentum scrolling begins."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-large-scroll-height nil
|
(defcustom pixel-scroll-precision-large-scroll-height nil
|
||||||
@ -188,17 +188,17 @@ Nil means to not interpolate such scrolls."
|
|||||||
|
|
||||||
(defcustom pixel-scroll-precision-interpolation-total-time 0.1
|
(defcustom pixel-scroll-precision-interpolation-total-time 0.1
|
||||||
"The total time in seconds to spend interpolating a large scroll."
|
"The total time in seconds to spend interpolating a large scroll."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-interpolation-factor 2.0
|
(defcustom pixel-scroll-precision-interpolation-factor 2.0
|
||||||
"A factor to apply to the distance of an interpolated scroll."
|
"A factor to apply to the distance of an interpolated scroll."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-interpolation-between-scroll 0.001
|
(defcustom pixel-scroll-precision-interpolation-between-scroll 0.001
|
||||||
"The number of seconds between each step of an interpolated scroll."
|
"The number of seconds between each step of an interpolated scroll."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defcustom pixel-scroll-precision-interpolate-page nil
|
(defcustom pixel-scroll-precision-interpolate-page nil
|
||||||
|
@ -102,7 +102,7 @@
|
|||||||
"Total number of seconds to wait in between steps.
|
"Total number of seconds to wait in between steps.
|
||||||
This is added to the total time it takes to run `animate-string'
|
This is added to the total time it takes to run `animate-string'
|
||||||
to ensure that the animation is not too fast to be seen."
|
to ensure that the animation is not too fast to be seen."
|
||||||
:type 'float
|
:type 'number
|
||||||
:version "29.1")
|
:version "29.1")
|
||||||
|
|
||||||
(defvar animation-buffer-name nil
|
(defvar animation-buffer-name nil
|
||||||
|
@ -4396,12 +4396,12 @@ When a match is found, native completion is disabled."
|
|||||||
(defcustom python-shell-completion-native-output-timeout 5.0
|
(defcustom python-shell-completion-native-output-timeout 5.0
|
||||||
"Time in seconds to wait for completion output before giving up."
|
"Time in seconds to wait for completion output before giving up."
|
||||||
:version "25.1"
|
:version "25.1"
|
||||||
:type 'float)
|
:type 'number)
|
||||||
|
|
||||||
(defcustom python-shell-completion-native-try-output-timeout 1.0
|
(defcustom python-shell-completion-native-try-output-timeout 1.0
|
||||||
"Time in seconds to wait for *trying* native completion output."
|
"Time in seconds to wait for *trying* native completion output."
|
||||||
:version "25.1"
|
:version "25.1"
|
||||||
:type 'float)
|
:type 'number)
|
||||||
|
|
||||||
(defvar python-shell-readline-completer-delims nil
|
(defvar python-shell-readline-completer-delims nil
|
||||||
"Word delimiters used by the readline completer.
|
"Word delimiters used by the readline completer.
|
||||||
|
@ -61,7 +61,7 @@ This variable should be set before activating `which-key-mode'.
|
|||||||
A value of zero might lead to issues, so a non-zero value is
|
A value of zero might lead to issues, so a non-zero value is
|
||||||
recommended
|
recommended
|
||||||
(see https://github.com/justbur/emacs-which-key/issues/134)."
|
(see https://github.com/justbur/emacs-which-key/issues/134)."
|
||||||
:type 'float
|
:type 'number
|
||||||
:package-version "1.0" :version "30.1")
|
:package-version "1.0" :version "30.1")
|
||||||
|
|
||||||
(defcustom which-key-idle-secondary-delay nil
|
(defcustom which-key-idle-secondary-delay nil
|
||||||
@ -82,7 +82,7 @@ This only applies if `which-key-popup-type' is minibuffer or
|
|||||||
`which-key-show-prefix' is echo. It needs to be less than
|
`which-key-show-prefix' is echo. It needs to be less than
|
||||||
`which-key-idle-delay' or else the keystroke echo will erase the
|
`which-key-idle-delay' or else the keystroke echo will erase the
|
||||||
which-key popup."
|
which-key popup."
|
||||||
:type 'float
|
:type 'number
|
||||||
:package-version '(which-key . "1.0") :version "30.1")
|
:package-version '(which-key . "1.0") :version "30.1")
|
||||||
|
|
||||||
(defcustom which-key-max-description-length 27
|
(defcustom which-key-max-description-length 27
|
||||||
@ -331,14 +331,14 @@ the right of) the middle slot. The default is zero."
|
|||||||
"Maximum width of which-key popup when type is side-window.
|
"Maximum width of which-key popup when type is side-window.
|
||||||
This variable can also be a number between 0 and 1. In that case,
|
This variable can also be a number between 0 and 1. In that case,
|
||||||
it denotes a percentage out of the frame's width."
|
it denotes a percentage out of the frame's width."
|
||||||
:type 'float
|
:type 'number
|
||||||
:package-version '(which-key . "1.0") :version "30.1")
|
:package-version '(which-key . "1.0") :version "30.1")
|
||||||
|
|
||||||
(defcustom which-key-side-window-max-height 0.25
|
(defcustom which-key-side-window-max-height 0.25
|
||||||
"Maximum height of which-key popup when type is side-window.
|
"Maximum height of which-key popup when type is side-window.
|
||||||
This variable can also be a number between 0 and 1. In that case, it denotes
|
This variable can also be a number between 0 and 1. In that case, it denotes
|
||||||
a percentage out of the frame's height."
|
a percentage out of the frame's height."
|
||||||
:type 'float
|
:type 'number
|
||||||
:package-version '(which-key . "1.0") :version "30.1")
|
:package-version '(which-key . "1.0") :version "30.1")
|
||||||
|
|
||||||
(defcustom which-key-frame-max-width 60
|
(defcustom which-key-frame-max-width 60
|
||||||
|
Loading…
Reference in New Issue
Block a user