From 23de972aa74fce7360b263d639ffbd674931e408 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 6 Jul 2013 20:38:24 +0300 Subject: Fix vertical cursor motion with non-default fonts. lisp/simple.el (line-move-partial): Adjust the row returned by posn-at-point for the current window-vscroll. (Bug#14567) --- lisp/simple.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lisp/simple.el') diff --git a/lisp/simple.el b/lisp/simple.el index c4c7d56dc2a..b4b8ddfabed 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4759,9 +4759,12 @@ lines." this-height (nth 4 wstart)))) (setq py (or (nth 1 this-lh) - (let ((ppos (posn-at-point))) - (cdr (or (posn-actual-col-row ppos) - (posn-col-row ppos)))))) + (let ((ppos (posn-at-point)) + col-row) + (setq col-row (posn-actual-col-row ppos)) + (if col-row + (- (cdr col-row) (window-vscroll)) + (cdr (posn-col-row ppos)))))) (cond ;; If last line of window is fully visible, and vscrolling ;; more would make this line invisible, move forward. -- cgit v1.2.1