aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2005-07-22 18:43:24 +0000
committerJuri Linkov2005-07-22 18:43:24 +0000
commitf9872a6bb3415b3c0b626cf5334a474e985e51f5 (patch)
treed0f46ad23d3e83bc317d9dc528e837c0508c5841
parent6a55dae2625af1e47376cd54115236abc874d288 (diff)
downloademacs-f9872a6bb3415b3c0b626cf5334a474e985e51f5.tar.gz
emacs-f9872a6bb3415b3c0b626cf5334a474e985e51f5.zip
(line-move-1): Fix comments.
-rw-r--r--lisp/simple.el4
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."
3491 ;; at least go to end of line. 3491 ;; at least go to end of line.
3492 (end-of-line)) 3492 (end-of-line))
3493 ((< arg 0) 3493 ((< arg 0)
3494 ;; If we did not move down as far as desired, 3494 ;; If we did not move up as far as desired,
3495 ;; at least go to end of line. 3495 ;; at least go to beginning of line.
3496 (beginning-of-line)) 3496 (beginning-of-line))
3497 (t 3497 (t
3498 (line-move-finish (or goal-column temporary-goal-column) 3498 (line-move-finish (or goal-column temporary-goal-column)