From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ralf Angeli Newsgroups: gmane.emacs.devel Subject: Re: move-beginning-of-line Date: Mon, 14 Mar 2005 17:48:40 +0100 Message-ID: References: <200503140258.j2E2wbI11194@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1110821692 16490 80.91.229.2 (14 Mar 2005 17:34:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 14 Mar 2005 17:34:52 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 14 18:34:51 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DAtCJ-0002rC-2P for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 18:17:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAtRq-0000VT-40 for ged-emacs-devel@m.gmane.org; Mon, 14 Mar 2005 12:33:46 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DAtP9-00087Y-Ao for emacs-devel@gnu.org; Mon, 14 Mar 2005 12:30:59 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DAtP7-00086m-53 for emacs-devel@gnu.org; Mon, 14 Mar 2005 12:30:57 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DAtP6-00084Q-Kb for emacs-devel@gnu.org; Mon, 14 Mar 2005 12:30:56 -0500 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1DAt85-0006dg-NM for emacs-devel@gnu.org; Mon, 14 Mar 2005 12:13:21 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DAsts-0000hB-OQ for emacs-devel@gnu.org; Mon, 14 Mar 2005 17:58:41 +0100 Original-Received: from iwi190.iwi.uni-sb.de ([134.96.72.190]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2005 17:58:40 +0100 Original-Received: from angeli by iwi190.iwi.uni-sb.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2005 17:58:40 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 36 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: iwi190.iwi.uni-sb.de User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:FwhVLpYjgLs/36I9fDqMy+9jE4w= 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: news.gmane.org gmane.emacs.devel:34583 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34583 * Kim F. Storm (2005-03-14) writes: > I wonder how preview-latex handles this, as it uses images over > multiline text _a lot_ ...? A typical example would be LaTeX code like Foo\footnote{Bar baz} blah which, with the help of preview-latex (or AUCTeX's folding functionality), will get displayed as Fooš blah > Does beginning-of-line work ok > with images in the middle of lines? If so, how? That depends. With point at the end of the line in the example `C-a' will move to the beginning of the line. With `beginning-of-line' point will end up inside of the overlay. One can test this quite easily (circumventing preview-latex's provisions for playing with point) with code like (progn (insert "\nwww xxx\nyyy zzz") (overlay-put (make-overlay (- (point) 11) (- (point) 4)) 'display "111")) If found it a bit peculiar that `M-x beginning-of-line RET' and `M-: (beginning-of-line) RET' yielded different results. In the former case point will end up on the first "1" and in the latter case after the last "1". -- Ralf