aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-06-21 12:01:57 +0000
committerKim F. Storm2006-06-21 12:01:57 +0000
commitab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2 (patch)
treed549a62134e132774a41ec8f2e6237161f15fb8a
parent43a37241f699b997eaf399d5a423462f6ac434fc (diff)
downloademacs-ab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2.tar.gz
emacs-ab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2.zip
(line-move-1): Check for move-end-of-line instead of
end-of-line when setting temporary-goal-column.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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."
3529 (if (and track-eol (eolp) 3529 (if (and track-eol (eolp)
3530 ;; Don't count beg of empty line as end of line 3530 ;; Don't count beg of empty line as end of line
3531 ;; unless we just did explicit end-of-line. 3531 ;; unless we just did explicit end-of-line.
3532 (or (not (bolp)) (eq last-command 'end-of-line))) 3532 (or (not (bolp)) (eq last-command 'move-end-of-line)))
3533 9999 3533 9999
3534 (current-column)))) 3534 (current-column))))
3535 3535