Mercurial > emacs
changeset 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 | 4bad00cd1b68 |
children | 2437cb336b92 |
files | lisp/simple.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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.