From mboxrd@z Thu Jan 1 00:00:00 1970 From: Srinivas Subject: Re: row and col spaning in table? Date: Tue, 17 Aug 2010 23:51:14 +0000 (UTC) Message-ID: References: <83bp9sqdec.fsf@yahoo.it> <62DFCAAE-CE93-460E-A4C2-8920029BD44B@gmail.com> <20100816.142400.137582176.Takaaki.Ota@am.sony.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from [140.186.70.92] (port=56335 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OlVwG-0006Qx-2W for emacs-orgmode@gnu.org; Tue, 17 Aug 2010 19:51:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OlVwE-00013d-UD for emacs-orgmode@gnu.org; Tue, 17 Aug 2010 19:51:27 -0400 Received: from lo.gmane.org ([80.91.229.12]:56943) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OlVwE-00013N-HJ for emacs-orgmode@gnu.org; Tue, 17 Aug 2010 19:51:26 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OlVwA-0006UB-Pi for emacs-orgmode@gnu.org; Wed, 18 Aug 2010 01:51:23 +0200 Received: from d058656.sce.com ([192.212.247.85]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Aug 2010 01:51:22 +0200 Received: from sp_us by d058656.sce.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Aug 2010 01:51:22 +0200 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: emacs-orgmode@gnu.org Carsten, As a follow up to Tak's response, this points to a potential bug in org-mode when converting tables from org-mode table to table.el table: * Org Mode Table | Header 1 | Header 2 | | R1 C1-2 | | R2 C1 | R2-3 C2 | | R3 C1 | | * Org Mode Table converted to table.el table using C-c ~ +----------+----------+ | Header 1 | Header 2 | +----------+----------+ | R1 C1-2 | +---------------------+ | R2 C1 | R2-3 C2 | +----------+----------+ | R3 C1 | | +----------+----------+ The second table is a result of hitting C-c ~ on the first table. Notice there is no '+' at the intersection at R1 C1-2, R2 C1 and R2-3 C2 It should be: +----------+----------+ | R1 C1-2 | +----------+----------+ | R2 C1 | R2-3 C2 | +----------+----------+ | R3 C1 | | +----------+----------+ Even after fixing the '+', the output is not the same as the one produced by table.el. Since I don't know quite how to debug in Emacs, I can only go by the produced output. Table.el produces the following for the corrected table: Input: +----------+----------+ | Header 1 | Header 2 | +----------+----------+ | R1 C1-2 | +----------+----------+ | R2 C1 | R2-3 C2 | +----------+ | | R3 C1 | | +----------+----------+ Table.el - table-generate-source (html) output:
Table
 Header 1   Header 2 
 R1 C1-2             
 R2 C1      R2-3 C2  
          
          
 R3 C1    
Orgmode output:
Header 1 Header 2
R1 C1-2
R2 C1
R3 C1
R2-3 C2
I know this is probably not a high priority issue/bug but I am posting the information here for completeness. Thanks again for you all your feedback. - Srinivas