[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [Babel][Bug] results silent ignored in #+call
From: |
Eric Schulte |
Subject: |
Re: [O] [Babel][Bug] results silent ignored in #+call |
Date: |
Mon, 14 Mar 2011 14:59:01 -0600 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
Hi Andreas,
The ":exports results" header argument is overriding the ":results
silent" header argument, which IMO is desired behavior. Thanks to your
example I see this is not the case for regular code blocks. I would
think that the behavior should be changed for regular code blocks,
s.t. both of the tests in your example below export results.
Best -- Eric
Andreas Leha <address@hidden> writes:
> Hi everyone,
>
> Just pulled the latest HEAD and found that there is a regression in
> babel. When a source block is evaluated via #+call the :results silent
> header arguement is ignored during export
>
> =test file====================================
> * Test1
> #+srcname: test
> #+begin_src R :session :exports results :results silent
> 1:10
> #+end_src
>
> Test1.
>
> * Test2
> #+call: test() :session :exports results :results silent
>
> Test2.
> ==========================================
>
> Regards,
> Andreas