diff options
| author | Po Lu | 2021-12-08 15:52:21 +0800 |
|---|---|---|
| committer | Po Lu | 2021-12-08 15:52:21 +0800 |
| commit | b0a960308bde2a32a3c0e2c6d7a53c01504ae5c2 (patch) | |
| tree | d6f71c5f949a95a06425dfa8a3e82514bd99eca0 | |
| parent | bf79dad3f20345ddf095325ce22c0f2a3408d3ba (diff) | |
| download | emacs-b0a960308bde2a32a3c0e2c6d7a53c01504ae5c2.tar.gz emacs-b0a960308bde2a32a3c0e2c6d7a53c01504ae5c2.zip | |
Fix last change
* lisp/pixel-scroll.el
(pixel-scroll-precision-interpolation-total-time)
(pixel-scroll-precision-interpolation-factor): Fix declared versions.
| -rw-r--r-- | lisp/pixel-scroll.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/pixel-scroll.el b/lisp/pixel-scroll.el index 6191c0530c4..af21f365b38 100644 --- a/lisp/pixel-scroll.el +++ b/lisp/pixel-scroll.el | |||
| @@ -145,13 +145,13 @@ Nil means to not interpolate such scrolls." | |||
| 145 | "The total time in seconds to spend interpolating a large scroll." | 145 | "The total time in seconds to spend interpolating a large scroll." |
| 146 | :group 'mouse | 146 | :group 'mouse |
| 147 | :type 'float | 147 | :type 'float |
| 148 | :version 29.1) | 148 | :version "29.1") |
| 149 | 149 | ||
| 150 | (defcustom pixel-scroll-precision-interpolation-factor 2.0 | 150 | (defcustom pixel-scroll-precision-interpolation-factor 2.0 |
| 151 | "A factor to apply to the distance of an interpolated scroll." | 151 | "A factor to apply to the distance of an interpolated scroll." |
| 152 | :group 'mouse | 152 | :group 'mouse |
| 153 | :type 'float | 153 | :type 'float |
| 154 | :version 29.1) | 154 | :version "29.1") |
| 155 | 155 | ||
| 156 | (defun pixel-scroll-in-rush-p () | 156 | (defun pixel-scroll-in-rush-p () |
| 157 | "Return non-nil if next scroll should be non-smooth. | 157 | "Return non-nil if next scroll should be non-smooth. |