From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Bug: CALL misbehavior with :results verbatim [8.3.4 (8.3.4-5-gdc68d2-elpaplus @ /Users/rossdonaldson/.emacs.d/elpa/org-plus-contrib-20160229/)] Date: Wed, 16 Mar 2016 23:42:57 +0100 Message-ID: <874mc6vyby.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agK7X-00044i-Aw for emacs-orgmode@gnu.org; Wed, 16 Mar 2016 18:40:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1agK7W-0007Br-In for emacs-orgmode@gnu.org; Wed, 16 Mar 2016 18:40:51 -0400 Received: from relay3-d.mail.gandi.net ([2001:4b98:c:538::195]:44209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1agK7W-0007BE-D6 for emacs-orgmode@gnu.org; Wed, 16 Mar 2016 18:40:50 -0400 In-Reply-To: (Ross Donaldson's message of "Sat, 05 Mar 2016 14:55:56 -0800") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Ross Donaldson Cc: emacs-orgmode@gnu.org Hello, Ross Donaldson writes: > When the header argument ~:results verbatim~ is set in a #+PROPERTY, > the results of #+CALL blocks are surrounded by full quotes: Isn't it the point of the "verbatim" parameter? > * Good > #+name: first-demo > #+BEGIN_SRC sh > echo 5 #+END_SRC > > #+RESULTS: first-demo > : 5 > #+call: first-demo() > > #+RESULTS: > : 5 > > * Bad > :PROPERTIES: > :header-args: :results verbatim > :END: > > #+name: second-demo > #+BEGIN_SRC sh > echo 5 #+END_SRC > > #+call: second-demo() > > #+RESULTS: : "5 : " What did you expect instead? > * Weird > #+name: third-demo > #+BEGIN_SRC sh :results verbatim > echo 5 #+END_SRC > > #+call: third-demo() > > #+RESULTS: > : 5 Also, what did you expect? Note that :results verbatim is applied to the block, not to the call line. Regards, -- Nicolas Goaziou