]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert parts of 3f076a8e44 that caused test failures
authorJuri Linkov <juri@linkov.net>
Sun, 28 Aug 2022 19:13:45 +0000 (22:13 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 28 Aug 2022 19:13:45 +0000 (22:13 +0300)
* lisp/simple.el (line-move-finish):
* lisp/window.el (scroll-command--goto-goal-column):
Revert back to using truncate-partial-width-windows instead of
truncated-partial-width-window-p.  This change caused test failures
in lisp/ls-lisp-tests.log and lisp/emacs-lisp/edebug-tests.log.

lisp/simple.el
lisp/window.el

index ceb29b1e30aab02122c935b25713e76bc0262424..daacf697ff3e100a46f179d819a4a8120e48f8a9 100644 (file)
@@ -7973,7 +7973,7 @@ If NOERROR, don't signal an error if we can't move that many lines."
 
        ;; Move to the desired column.
         (if (and line-move-visual
-                 (not (or truncate-lines (truncated-partial-width-window-p))))
+                 (not (or truncate-lines truncate-partial-width-windows)))
             ;; Under line-move-visual, goal-column should be
             ;; interpreted in units of the frame's canonical character
             ;; width, which is exactly what vertical-motion does.
index db69379e692dffd585b6a37c46fd9aeadcb73cfc..ec2b0a69302347ab4092c3deed06f650c20f70a3 100644 (file)
@@ -10137,7 +10137,7 @@ semipermanent goal column for this command."
   (when goal-column
     ;; Move to the desired column.
     (if (and line-move-visual
-             (not (or truncate-lines (truncated-partial-width-window-p))))
+             (not (or truncate-lines truncate-partial-width-windows)))
         ;; Under line-move-visual, goal-column should be
         ;; interpreted in units of the frame's canonical character
         ;; width, which is exactly what vertical-motion does.