From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Babel: the disappearing hline Date: Mon, 11 Nov 2013 16:35:35 +0200 Message-ID: <877gcfhuq0.fsf@syk.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60349) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vfsat-0008BB-DA for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 09:36:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vfsal-0001Ad-LI for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 09:35:59 -0500 Received: from plane.gmane.org ([80.91.229.3]:41921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vfsal-0001AR-F5 for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 09:35:51 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vfsah-00036r-Fd for emacs-orgmode@gnu.org; Mon, 11 Nov 2013 15:35:47 +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 15:35:47 +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 15:35:47 +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 Greetings. 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? # ------------------------------------------------------------------ * 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() #+RESULTS: table-two | a | | b | | c | #+NAME: table-three #+CALL: table-one[:results raw]() #+RESULTS: table-three : ((a) (b) hline (c)) # ------------------------------------------------------------------ Jarmo