From ab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Wed, 21 Jun 2006 12:01:57 +0000 Subject: [PATCH] (line-move-1): Check for move-end-of-line instead of end-of-line when setting temporary-goal-column. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 5d52d867beb..754b6e9ed38 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3529,7 +3529,7 @@ Outline mode sets this." (if (and track-eol (eolp) ;; Don't count beg of empty line as end of line ;; unless we just did explicit end-of-line. - (or (not (bolp)) (eq last-command 'end-of-line))) + (or (not (bolp)) (eq last-command 'move-end-of-line))) 9999 (current-column)))) -- 2.39.2