diff options
| author | Kim F. Storm | 2006-06-21 12:01:57 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-06-21 12:01:57 +0000 |
| commit | ab9623c2f8bc1e47bf8c866f7b0dafb6ea7341c2 (patch) | |
| tree | d549a62134e132774a41ec8f2e6237161f15fb8a | |
| parent | 43a37241f699b997eaf399d5a423462f6ac434fc (diff) | |
| download | emacs-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.el | 2 |
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 | ||