From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: 6.29c export latex bug? Date: Mon, 10 Aug 2009 23:26:01 -0400 Message-ID: <11010.1249961161@gamaville.dokosmarshall.org> References: <871vnj743l.fsf@gmail.com> <15967.1249950100@alphaville.usa.hp.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mai1s-0004rM-Ch for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 23:28:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mai1n-0004n5-6k for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 23:28:04 -0400 Received: from [199.232.76.173] (port=32919 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mai1n-0004mv-36 for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 23:27:59 -0400 Received: from vms173013pub.verizon.net ([206.46.173.13]:51534) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mai1m-0005Kc-Oi for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 23:27:58 -0400 Received: from gamaville.dokosmarshall.org ([98.110.172.159]) by vms173013.mailsrvcs.net (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 32bit)) with ESMTPA id <0KO700BX807FF1I5@vms173013.mailsrvcs.net> for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 22:26:16 -0500 (CDT) In-reply-to: Message from Nick Dokos of "Mon, 10 Aug 2009 20:21:40 EDT." <15967.1249950100@alphaville.usa.hp.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org, zwz Nick Dokos wrote: > 31ceed47ffd3070418dd34316fef8869d2434c26 is first bad commit > commit 31ceed47ffd3070418dd34316fef8869d2434c26 > Author: Carsten Dominik > Date: Tue Jun 30 07:24:57 2009 +0200 > > New minor mode org-indent-mode > > This mode implements outline indentation similar to clean view, but in > a dynamic and virtual way, at display time. > I looked over the commit and saw this change to org-table.el: ... (if (equal (char-before) ?\n) ;; This hack is for org-indent, to force redisplay of the ;; line prefix of the first line. Apparently the redisplay ;; is tied to the newline, which is, I think, a bug. ;; To force this redisplay, we remove and re-insert the ;; newline, so that the redisplay engine thinks it belongs ;; to the changed text. (progn (backward-delete-char 1) (insert "\n"))) ... I commented it out and the export of the table worked - but I have no idea why. Nick