From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: export of src block ignores :results Date: Fri, 30 Sep 2016 10:05:59 -0700 Message-ID: References: <87r383ky0w.fsf@biostat.ku.dk> <87a8eqv5x2.fsf@biostat.ku.dk> <87fuoinfhz.fsf@biostat.ku.dk> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq1GM-0000rF-TD for emacs-orgmode@gnu.org; Fri, 30 Sep 2016 13:06:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bq1GG-0000aX-SV for emacs-orgmode@gnu.org; Fri, 30 Sep 2016 13:06:17 -0400 Received: from iport-acv3-out.ucsd.edu ([132.239.0.4]:28726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq1GE-0000VE-9a for emacs-orgmode@gnu.org; Fri, 30 Sep 2016 13:06:12 -0400 In-Reply-To: <87fuoinfhz.fsf@biostat.ku.dk> 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" To: Thomas Alexander Gerds Cc: emacs-orgmode@gnu.org On Thu, 29 Sep 2016, Thomas Alexander Gerds wrote: > [deleted] > > anyway, the original problem is not solved yet. > org-babel-current-result-hash is related to the execution of the src > block which is independent of the export process since I have > > (setq org-export-babel-evaluate nil). > > and the problem that the results are exported in case of ":results code" > persists when I set (setq org-babel-hash-show-time nil) > Follow the advice in the docstring for `org-export-babel-evaluate'. Use `:eval never-export'. Set org-export-babel-evaluate to t. > so, unfortunately my question remains. which function in the export > process interprets the "results code" option? With org-export-babel-evaluate set to nil, none of the babel functions are run. And none of the export transcoders take account of the header args, AFAICS. So the answer is `none of them'. Chuck