From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Berry, Charles" Subject: `:wrap src latex' now fails on export Date: Sun, 24 Dec 2017 20:17:17 +0000 Message-ID: <5F660A3B-F655-48E2-8FDC-AAA5CF811681@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]:42010) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eTCiC-0004pF-ER for emacs-orgmode@gnu.org; Sun, 24 Dec 2017 15:17:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eTCi9-0002M1-52 for emacs-orgmode@gnu.org; Sun, 24 Dec 2017 15:17:32 -0500 Received: from iport-acv4-out.ucsd.edu ([132.239.0.7]:33350) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1eTCi8-0002Jz-L0 for emacs-orgmode@gnu.org; Sun, 24 Dec 2017 15:17:29 -0500 Received: from HS-CGDLP5-V-MTA (localhost.localdomain [127.0.0.1]) by HS-CGDLP5-V-MTA (Postfix) with ESMTP id 5CFE863 for ; Sun, 24 Dec 2017 12:17:23 -0800 (PST) Received: from iport-acv6-out.ucsd.edu (iport-acv6-out.ucsd.edu [132.239.0.13]) by HS-CGDLP5-V-MTA (Postfix) with ESMTP id 461F263 for ; Sun, 24 Dec 2017 12:17:23 -0800 (PST) Content-Language: en-US Content-ID: 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: emacs-org-mode I can execute this src block with no problems: #+begin_src emacs-lisp :wrap src latex :exports results "some-text" #+end_src and it will produce the expected result: #+RESULTS: #+begin_src latex some-text #+end_src and if I then export as (say) `C-c C-e C-b l L n y', I get just `some-text'= in the LaTeX buffer. But if I try to execute the first block, i.e. `C-c C-e C-b l L y' I get an = error *before* the prompt for the latex src block appears and this in my *M= essage* buffer : ,---- | org-babel-exp process emacs-lisp at position 3... | Evaluate this emacs-lisp code block on your system? (y or n) y | executing Emacs-Lisp code block... | Code block evaluation complete. | org-babel-exp process latex at position 14... | org-babel-exp-process-buffer: Wrong type argument: integer-or-marker-p, n= il `---- I've tried edebug-ing and got as far as `org-babel-exp--at-source', but hav= en't been able get any further. FWIW, changing the lang to something besides `latex' has no effect. Chuck p.s. Not sure when this stop working.