From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: Babel: the disappearing hline Date: Mon, 11 Nov 2013 16:31:32 +0100 Message-ID: <87wqkfrm3v.fsf@gmail.com> References: <877gcfhuq0.fsf@syk.fi> <8738n3t2ez.fsf@gmail.com> <87fvr3nfcm.fsf@syk.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VftT0-0001p1-MV for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:32:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VftSu-0002Zr-Aq for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:31:54 -0500 Received: from plane.gmane.org ([80.91.229.3]:54369) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VftSu-0002Zd-4d for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 10:31:48 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VftSp-0002lQ-EK for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 16:31:43 +0100 Received: from e178189216.adsl.alicedsl.de ([85.178.189.216]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 11 Nov 2013 16:31:43 +0100 Received: from tjolitz by e178189216.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 11 Nov 2013 16:31:43 +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 Jarmo Hurri writes: >>> 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 | but #+begin_src emacs-lisp :var table=table-one :hlines yes table #+end_src #+results: | a | | b | |---| | c | seems to be a problem with #+CALL then ... -- cheers, Thorsten