From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [Babel][Bug] results silent ignored in #+call Date: Mon, 14 Mar 2011 14:59:01 -0600 Message-ID: <87bp1dwfzl.fsf@gmail.com> References: <4D7E7578.2060206@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=37666 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzFKy-0000Yd-KA for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 17:30:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PzFHq-0001vp-0y for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 17:26:47 -0400 Received: from mail-pw0-f41.google.com ([209.85.160.41]:56201) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PzFHp-0001vX-Sj for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 17:26:45 -0400 Received: by pwi10 with SMTP id 10so4337pwi.0 for ; Mon, 14 Mar 2011 14:26:44 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Andreas Leha Cc: emacs-orgmode@gnu.org 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 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