From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: Re: [babel] Table as varaiables a differently proccesed by #+call lines vs. source code blocks Date: Thu, 25 Jul 2013 13:02:48 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2P1F-0001nn-2S for emacs-orgmode@gnu.org; Thu, 25 Jul 2013 13:08:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V2P1C-00047l-G2 for emacs-orgmode@gnu.org; Thu, 25 Jul 2013 13:08:01 -0400 Received: from [204.62.15.78] (port=37668 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2OwC-0001tA-Ky for emacs-orgmode@gnu.org; Thu, 25 Jul 2013 13:02:48 -0400 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 Sorry for breaking the thread, i deleted the prior message. On 2013-07-23 08:25, Sebastien Vauban wrote: > See the contents of the following vars: > > - `org-babel-default-header-args' for source blocks > - `org-babel-default-inline-header-args' for inline source blocks > - `org-babel-default-lob-header-args' for `#+call' lines Tracing through the function `org-babel-lob-execute', it seems that `org-babel-default-lob-header-args' are not actually referenced or used, but the variable `org-babel-default-header-args:emacs-lisp' (default to `((:hlines . "yes") (:colnames . "no"))') is. `org-babel-default-lob-header-args' is only reference in the function `org-babel-exp-non-block-element' (used for export only), so i don't think it actually has any effect. So, given the above, and the following example: #+name: test #+BEGIN_SRC emacs-lisp "foo" #+END_SRC #+call: test() the complete list of header arguments for the call line are: #+BEGIN_EXAMPLE (:comments . #1="") (:shebang . #1#) (:cache . "no") (:padline . #1#) (:noweb . "no") (:tangle . "no") (:exports . "results") (:results . "replace") (:var . "results=test()") (:colnames . "no") (:hlines . "yes") (:padnewline . "yes") (:session . "none") #+END_EXAMPLE rick