changeset 71420:093ea85cc89f

(line-move-1): Check for move-end-of-line instead of end-of-line when setting temporary-goal-column.
author Kim F. Storm <storm@cua.dk>
date Wed, 21 Jun 2006 12:01:57 +0000
parents 17e47244be7c
children 1b59da485fdb
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))))