From: Kim F. Storm Date: Wed, 21 Jun 2006 12:01:57 +0000 (+0000) Subject: (line-move-1): Check for move-end-of-line instead of X-Git-Tag: emacs-pretest-22.0.90~1887 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2;p=emacs.git (line-move-1): Check for move-end-of-line instead of end-of-line when setting temporary-goal-column. --- 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))))