From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: line-move-finish (simple.el) hangs on invisible&intangible text. Date: Fri, 19 Apr 2002 12:32:15 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <20020419122441.1A89.LEKTU@terra.es> References: <20020419104107.1A85.LEKTU@terra.es> <5080-Fri19Apr2002125927+0300-eliz@is.elta.co.il> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1019212410 11884 127.0.0.1 (19 Apr 2002 10:33:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 19 Apr 2002 10:33:30 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16yVhq-00035Z-00 for ; Fri, 19 Apr 2002 12:33:30 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 16yW19-0004NV-00 for ; Fri, 19 Apr 2002 12:53:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16yVhX-0001yA-00; Fri, 19 Apr 2002 06:33:11 -0400 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16yVgl-0000oz-00; Fri, 19 Apr 2002 06:32:23 -0400 Original-Received: from jbarranquero (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id g3JAWDA00536; Fri, 19 Apr 2002 12:32:14 +0200 Original-To: Eli Zaretskii In-Reply-To: <5080-Fri19Apr2002125927+0300-eliz@is.elta.co.il> X-Mailer: Becky! ver. 2.00.10 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:2768 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:2768 On Fri, 19 Apr 2002 12:59:28 +0300, "Eli Zaretskii" wrote: > Does it happen in "emacs -nw"? In -nw mode the line of rows below the Info title is visible and tangible. If I toggle read-only and then manually make the line to be i&i, then yes, it happens too. line-move-finish calls line-move-to-column to set the cursor to the desired column, and that function does: (if (zerop col) (beginning-of-line) (move-to-column col)) That's why it works from column 0 and not others. In my system, puting the cursor at the beginning of a line that only contains i&i characters and evaling (beginning-of-line) does not move the cursor, while evaling (move-to-column 0) moves it. Doesn't that happen on your system? /L/e/k/t/u