From 621a4cc83ad94f4a51acff5acc50f6c83c0c5ad1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 2 Feb 2006 04:21:10 +0000 Subject: [PATCH] (move-beginning-of-line): Scan properly for invis change. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 647a57cbe6b..d0fecbc3586 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3743,7 +3743,7 @@ To ignore intangibility, bind `inhibit-point-motion-hooks' to t." ;; 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. -- 2.39.2