# HG changeset patch # User Kim F. Storm # Date 1150891317 0 # Node ID 093ea85cc89fc202eceaa8f83f2de85789a15784 # Parent 17e47244be7c8c8f93cd6e9eed9528468aec7678 (line-move-1): Check for move-end-of-line instead of end-of-line when setting temporary-goal-column. diff -r 17e47244be7c -r 093ea85cc89f lisp/simple.el --- a/lisp/simple.el Wed Jun 21 12:01:37 2006 +0000 +++ b/lisp/simple.el Wed Jun 21 12:01:57 2006 +0000 @@ -3529,7 +3529,7 @@ (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))))