From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: [BUG] src_blocks - :results raw and replace don't work together Date: Mon, 07 Jul 2014 10:29:51 +0100 Message-ID: References: <87vbraroza.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54223) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X45FM-00080q-KU for emacs-orgmode@gnu.org; Mon, 07 Jul 2014 05:30:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X45FF-00073f-5f for emacs-orgmode@gnu.org; Mon, 07 Jul 2014 05:30:04 -0400 Received: from plane.gmane.org ([80.91.229.3]:34574) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X45FE-00073R-UW for emacs-orgmode@gnu.org; Mon, 07 Jul 2014 05:29:57 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X45FB-0003UE-Ba for emacs-orgmode@gnu.org; Mon, 07 Jul 2014 11:29:53 +0200 Received: from cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net ([81.102.136.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Jul 2014 11:29:53 +0200 Received: from andreas.leha by cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Jul 2014 11:29:53 +0200 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: emacs-orgmode@gnu.org Hi Thorsten, Thorsten Jolitz writes: > Hi List, > > evaluating this 3 times does not work as expected: > > ,---- > | * A > | > | #+header: :results raw replace > | #+begin_src emacs-lisp > | (+ 2 2) > | #+end_src > | > | #+results: > | 4 > | 4 > | 4 > `---- > > Independent from argument order, 'replace' (which should be default > anyway) is ignored. Try adding the :wrap, which works for me: ,---- | * A | | #+header: :results raw replace :wrap | #+begin_src emacs-lisp | (+ 2 2) | #+end_src | | #+results: | #+BEGIN_RESULTS | 4 | #+END_RESULTS `---- Regards, Andreas