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: Something is rotten with end-of-line and move-end-of-line Date: Mon, 28 Nov 2005 22:11:20 -0500 Message-ID: References: <85y83dleho.fsf@lola.goethe.zz> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1133234168 15586 80.91.229.2 (29 Nov 2005 03:16:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 29 Nov 2005 03:16:08 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 29 04:16:01 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Egvvg-0004TC-R5 for ged-emacs-devel@m.gmane.org; Tue, 29 Nov 2005 04:13:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Egvvf-00032t-Vp for ged-emacs-devel@m.gmane.org; Mon, 28 Nov 2005 22:13:16 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Egvtq-00024F-J0 for emacs-devel@gnu.org; Mon, 28 Nov 2005 22:11:22 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Egvtp-00022v-Cf for emacs-devel@gnu.org; Mon, 28 Nov 2005 22:11:21 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Egvto-00022V-On for emacs-devel@gnu.org; Mon, 28 Nov 2005 22:11:20 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Egvto-000304-KX for emacs-devel@gnu.org; Mon, 28 Nov 2005 22:11:20 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1Egvto-0004mr-2R; Mon, 28 Nov 2005 22:11:20 -0500 Original-To: lorentey@elte.hu (=?utf-8?Q?L=C5=91rentey_K=C3=A1roly?=) In-reply-to: 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:46748 Archived-At: The difference (a difference?) is inside fields: `{beginning,end}-of-line' moves to the beginning/end of the field, while `move-{beginning,end}-of-line' stops at the field boundaries: I am not sure of the difference between "beginning/end of the field" and "stops at the field boundaries". Could you explain the difference in different words? Sorry, I meant `move-{beginning,end}-of-line' goes to the actual line ends. Oh, that makes sense. So I think this should explain the difference. *** simple.el 28 Nov 2005 16:42:47 -0500 1.774 --- simple.el 28 Nov 2005 17:04:06 -0500 *************** *** 3644,3655 **** "Move point to end of current line. With argument ARG not nil or 1, move forward ARG - 1 lines first. If point reaches the beginning or end of buffer, it stops there. ! To ignore intangibility, bind `inhibit-point-motion-hooks' to t. ! ! This command does not move point across a field boundary unless doing so ! would move beyond there to a different line; if ARG is nil or 1, and ! point starts at a field boundary, point does not move. To ignore field ! boundaries bind `inhibit-field-text-motion' to t." (interactive "p") (or arg (setq arg 1)) (let (done) --- 3644,3650 ---- "Move point to end of current line. With argument ARG not nil or 1, move forward ARG - 1 lines first. If point reaches the beginning or end of buffer, it stops there. ! To ignore intangibility, bind `inhibit-point-motion-hooks' to t." (interactive "p") (or arg (setq arg 1)) (let (done) *************** *** 3680,3691 **** "Move point to beginning of current display line. With argument ARG not nil or 1, move forward ARG - 1 lines first. If point reaches the beginning or end of buffer, it stops there. ! To ignore intangibility, bind `inhibit-point-motion-hooks' to t. ! ! This command does not move point across a field boundary unless doing so ! would move beyond there to a different line; if ARG is nil or 1, and ! point starts at a field boundary, point does not move. To ignore field ! boundaries bind `inhibit-field-text-motion' to t." (interactive "p") (or arg (setq arg 1)) (if (/= arg 1) --- 3675,3681 ---- "Move point to beginning of current display line. With argument ARG not nil or 1, move forward ARG - 1 lines first. If point reaches the beginning or end of buffer, it stops there. ! To ignore intangibility, bind `inhibit-point-motion-hooks' to t." (interactive "p") (or arg (setq arg 1)) (if (/= arg 1)