From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Berry, Charles" Subject: Bug: Inline src block results no longer exported Date: Mon, 11 Dec 2017 00:07:19 +0000 Message-ID: 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]:40840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eOBdL-0001fm-HA for emacs-orgmode@gnu.org; Sun, 10 Dec 2017 19:07:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eOBdI-00018a-Sg for emacs-orgmode@gnu.org; Sun, 10 Dec 2017 19:07:47 -0500 Received: from iport-acv8-out.ucsd.edu ([132.239.0.21]:61497) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1eOBdI-00015z-Dk for emacs-orgmode@gnu.org; Sun, 10 Dec 2017 19:07:44 -0500 Received: from HS-CDGLP6-V-MTA (localhost.localdomain [127.0.0.1]) by HS-CDGLP6-V-MTA (Postfix) with ESMTP id B497C71 for ; Sun, 10 Dec 2017 16:07:41 -0800 (PST) Received: from iport-bcv3-out.ucsd.edu (iport-bcv3-out.ucsd.edu [132.239.0.89]) by HS-CDGLP6-V-MTA (Postfix) with ESMTP id 9C87D6F for ; Sun, 10 Dec 2017 16:07:41 -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 list This commit --- commit 5f5d82ed516b7b385a9258271becbfa247e94af3 Author: Nicolas Goaziou Date: Tue Nov 21 22:25:17 2017 +0100 Remove second pass for macro expansion --- breaks the processing of inline src block results wrapped as {{{results(=3D= my result=3D)}}}. ECM: Copy the follow org block to a buffer and run `C-c C-e l L y y' #+begin_src org See nothing: src_emacs-lisp{"Hello World"} See something: src_emacs-lisp[:results raw]{ "Raw Results" } #+end_src The result will be=20 #+begin_example=20 See nothing:=20 See something: Raw Results #+end_example missing the Hello World. Chuck=