From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: move-beginning-of-line misbehaves on wrapped-line invisible text - recent cvs checkout Date: Mon, 30 Jan 2006 13:46:22 -0500 Message-ID: References: <2cd46e7f0601121612y386d057ft68324aeb352b777d@mail.gmail.com> <2cd46e7f0601220812v53945980x8d045c3df55e5f2c@mail.gmail.com> <2cd46e7f0601231017h65e30274x18504d460d5d8042@mail.gmail.com> <2cd46e7f0601231247p76c5e25fk582a2f90c7876146@mail.gmail.com> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1138647641 26635 80.91.229.2 (30 Jan 2006 19:00:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 30 Jan 2006 19:00:41 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 30 20:00:39 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F3eFm-0001Ey-8t for ged-emacs-devel@m.gmane.org; Mon, 30 Jan 2006 19:59:54 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F3eIj-0004ec-K5 for ged-emacs-devel@m.gmane.org; Mon, 30 Jan 2006 14:02:57 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F3e6Q-0007YO-Ei for emacs-devel@gnu.org; Mon, 30 Jan 2006 13:50:14 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F3e6P-0007XY-NZ for emacs-devel@gnu.org; Mon, 30 Jan 2006 13:50:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F3e6P-0007XM-IZ for emacs-devel@gnu.org; Mon, 30 Jan 2006 13:50:13 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F3e4l-0002rh-AG for emacs-devel@gnu.org; Mon, 30 Jan 2006 13:48:31 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1F3e2g-0004RI-MJ; Mon, 30 Jan 2006 13:46:22 -0500 Original-To: Ken Manheimer In-reply-to: <2cd46e7f0601231247p76c5e25fk582a2f90c7876146@mail.gmail.com> (message from Ken Manheimer on Mon, 23 Jan 2006 15:47:28 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:49777 Archived-At: For the current version of simple.el, is this the change that is needed? *** simple.el 23 Jan 2006 11:48:39 -0500 1.787 --- simple.el 30 Jan 2006 13:23:53 -0500 *************** *** 3743,3749 **** ;; 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)))) (skip-chars-backward "^\n")) ;; Take care of fields. --- 3743,3749 ---- ;; 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 (point))) (skip-chars-backward "^\n")) ;; Take care of fields.