diff options
author | Juri Linkov <juri@jurta.org> | 2005-07-22 18:43:24 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-07-22 18:43:24 +0000 |
commit | f9872a6bb3415b3c0b626cf5334a474e985e51f5 (patch) | |
tree | d0f46ad23d3e83bc317d9dc528e837c0508c5841 | |
parent | 6a55dae2625af1e47376cd54115236abc874d288 (diff) | |
download | emacs-f9872a6bb3415b3c0b626cf5334a474e985e51f5.tar.gz emacs-f9872a6bb3415b3c0b626cf5334a474e985e51f5.tar.bz2 emacs-f9872a6bb3415b3c0b626cf5334a474e985e51f5.zip |
(line-move-1): Fix comments.
-rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 9523bc6c28d..40a2dae129a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3491,8 +3491,8 @@ Outline mode sets this." ;; at least go to end of line. (end-of-line)) ((< arg 0) - ;; If we did not move down as far as desired, - ;; at least go to end of line. + ;; If we did not move up as far as desired, + ;; at least go to beginning of line. (beginning-of-line)) (t (line-move-finish (or goal-column temporary-goal-column) |