]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix 1-off errors in pixel scrolling code
authorPo Lu <luangruo@yahoo.com>
Tue, 30 Nov 2021 12:44:54 +0000 (20:44 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 30 Nov 2021 12:44:54 +0000 (20:44 +0800)
* lisp/pixel-scroll.el (pixel-scroll-precision-scroll-down): Fix
one-off errors.

lisp/pixel-scroll.el

index 097e4e53ddc44ad90930fc8ea6c702b4ae5f9fa9..cc90be021f7c6df3f9421c741e64f8b492dbdfbc 100644 (file)
@@ -424,15 +424,15 @@ the height of the current window."
 (defun pixel-scroll-precision-scroll-up (delta)
   "Scroll the current window up by DELTA pixels."
   (let* ((edges (window-edges nil t nil t))
-         (max-y (- (nth 3 edges)
+         (max-y (- (nth 3 edges) 1
                    (window-tab-line-height)
                    (window-header-line-height)))
          (usable-height (- max-y (nth 1 edges))))
     (when-let* ((posn (posn-at-point))
                (current-y (+ (cdr (posn-x-y posn))
                              (line-pixel-height))))
-      (while (and (< (- max-y current-y) delta)
-                  (< (cdr (posn-object-width-height posn))
+      (while (and (<= (- max-y current-y) delta)
+                  (<= (cdr (posn-object-width-height posn))
                      usable-height))
         (vertical-motion -1)
         (setq current-y (- current-y (line-pixel-height))))