From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Berry, Charles" Subject: Re: Painfully Slow Export Date: Tue, 12 Jun 2018 21:07:53 +0000 Message-ID: <04337B1C-B1CB-4349-87E1-5C7051B38BA7@ucsd.edu> References: <73844D54-30A4-48CB-8303-6DA3C932A444@ucsd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57228) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fSqWH-0005j0-Bj for emacs-orgmode@gnu.org; Tue, 12 Jun 2018 17:08:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fSqWD-0006WD-9y for emacs-orgmode@gnu.org; Tue, 12 Jun 2018 17:08:01 -0400 Received: from iport-acv8-out.ucsd.edu ([132.239.0.21]:45883) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1fSqWC-0006Vb-Qj for emacs-orgmode@gnu.org; Tue, 12 Jun 2018 17:07:57 -0400 In-Reply-To: Content-Language: en-US Content-ID: <52842F5352CCD34596720BF472C7C8A5@AD.UCSD.EDU> 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: Ken Mankoff Cc: Org-mode > On Jun 12, 2018, at 12:41 PM, Ken Mankoff wrote: >=20 > Hi Chuck, >=20 > It looks fine to me. I see: >=20 > Name: fig:foo > Lang: python > Properties: > :header-args :eval never-export > :header-args:python nil > Header Arguments: > :cache no > :eval never-export > :exports results > :hlines no > :noweb yes > :results file replace > :session discharge_ts > :tangle no >=20 > =20 And still the src blocks execute? Try this. Use the following in an org buffer: --8<---------------cut here---------------start------------->8--- #+PROPERTY: header-args :eval never-export #+begin_src emacs-lisp :exports results "BBB" #+end_src #+RESULTS: : AA --8<---------------cut here---------------end--------------->8--- C-c C-c on the PROPERTY line and confirm as above that the header-args are = rightly set. Then `C-c C-e C-b t A' should give a buffer like this: --8<---------------cut here---------------start------------->8--- ,---- | AA `---- --8<---------------cut here---------------end--------------->8--- Which you can see implies that the src-block did not run, but the results w= ere properly exported. This works for me on a brand new copy of master (9.1.13). If it fails for you, then you need to check your org setup. If it succeeds, but exporting your file still fails then there has to be so= mething amiss in your file. I'd instrument `org-babel-execute-src-block' an= d see what the line with `(org-babel-check-evaluate info)' returns. It shou= ld be `nil'. If not you need to see what is in `info'. HTH, Chuck=20