From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Re: Babel: the disappearing hline Date: Mon, 11 Nov 2013 17:11:05 +0200 Message-ID: <87fvr3nfcm.fsf@syk.fi> References: <877gcfhuq0.fsf@syk.fi> <8738n3t2ez.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vft9K-0003iv-R0 for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:11:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vft9D-00049d-Hq for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:11:34 -0500 Received: from plane.gmane.org ([80.91.229.3]:56444) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vft9D-00049V-Ay for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:11:27 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vft98-0000AB-8c for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 16:11:22 +0100 Received: from cs78160219.pp.htv.fi ([62.78.160.219]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 11 Nov 2013 16:11:22 +0100 Received: from jarmo.hurri by cs78160219.pp.htv.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 11 Nov 2013 16:11:22 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >> While taking my first long tour in the land of Babel, I bumped into a >> minor hline issue. Can someone tell me why the hline has disappeared >> from the second table? > > Because you use CALL without arguments and argument :hlines defaults > to 'no'? Ok, but why is there then a hline in the raw output in table-three? Furthermore, setting hlines to yes makes no difference: * test #+NAME: table-one #+BEGIN_SRC emacs-lisp (list '(a) '(b) 'hline '(c)) #+END_SRC #+RESULTS: table-one | a | | b | |---| | c | #+NAME: table-two #+CALL: table-one[:hlines yes]() #+RESULTS: table-two | a | | b | | c | #+NAME: table-three #+CALL: table-one[:results raw]() #+RESULTS: table-three : ((a) (b) hline (c)) Jarmo