From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Re: Babel: the disappearing hline Date: Tue, 12 Nov 2013 18:09:04 +0200 Message-ID: <87ob5pmwkf.fsf@syk.fi> References: <877gcfhuq0.fsf@syk.fi> <8738n3t2ez.fsf@gmail.com> <87fvr3nfcm.fsf@syk.fi> <87wqkfrm3v.fsf@gmail.com> <87y54uhpw8.fsf@gmail.com> <87y54urgs4.fsf@syk.fi> <87ppq6hlye.fsf@gmail.com> <87r4amb0vc.fsf@syk.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgGWs-00010E-1f for emacs-orgmode@gnu.org; Tue, 12 Nov 2013 11:09:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VgGWl-00020m-Ty for emacs-orgmode@gnu.org; Tue, 12 Nov 2013 11:09:25 -0500 Received: from plane.gmane.org ([80.91.229.3]:54286) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgGWl-0001yE-Mu for emacs-orgmode@gnu.org; Tue, 12 Nov 2013 11:09:19 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VgGWh-0000Wc-Lf for emacs-orgmode@gnu.org; Tue, 12 Nov 2013 17:09:15 +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 ; Tue, 12 Nov 2013 17:09:15 +0100 Received: from jarmo.hurri by cs78160219.pp.htv.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 12 Nov 2013 17:09:15 +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 Rick Frankel writes: Greetings Rick. > Note that in versions of org-mode prior to commit 6857d139 of > 2013-09-28 (below), this was overridden in the setting of > `org-babel-default-header-args:emacs-lisp, so this may be why you are > seeing and "inconsistency" between the call line and the emacs-lisp > source block. If I understand correctly, you are referring to the possibility that the inconsistency would be caused by an old version of org. I do not think that this is the case: I have been pulling the newest version every day. Below is the output of the test, including a printout of my org version number. Or is there something weird in my setup? Do you get a different output with my test cases? I will look at the other stuff you sent a bit later. All the best, Jarmo # ---------------------------------------------------------------------- * hline pruning in output # test org version #+BEGIN_SRC emacs-lisp (org-version) #+END_SRC #+RESULTS: : 8.2.3a # case 1: hlines are retained by default when a source code block is # defined and evaluated #+NAME: func #+BEGIN_SRC emacs-lisp (list '(a) '(b) 'hline '(c)) #+END_SRC #+RESULTS: func | a | | b | |---| | c | # case 2: hlines are retained by default when source code is called # by post #+BEGIN_SRC emacs-lisp :post func() #+END_SRC #+RESULTS: | a | | b | |---| | c | # case 3: but hlines are removed by default when source code is # called by #+CALL #+CALL: func() #+RESULTS: | a | | b | | c |