diff lisp/simple.el @ 68537:0cbfc61cfa3f

(move-beginning-of-line): Scan properly for invis change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 02 Feb 2006 04:21:10 +0000
parents 18c6a9d97dc1
children 28a6ea706763 49f9dd4bb117 d6f8fe3307c8
line wrap: on
line diff
--- a/lisp/simple.el	Thu Feb 02 04:20:36 2006 +0000
+++ b/lisp/simple.el	Thu Feb 02 04:21:10 2006 +0000
@@ -3743,7 +3743,7 @@
     ;; Move to beginning-of-line, ignoring fields and invisibles.
     (skip-chars-backward "^\n")
     (while (and (not (bobp)) (line-move-invisible-p (1- (point))))
-      (goto-char (previous-char-property-change (1- (point))))
+      (goto-char (previous-char-property-change (point)))
       (skip-chars-backward "^\n"))
 
     ;; Take care of fields.