[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [BUG] src_blocks - :results raw and replace don't work together
From: |
Andreas Leha |
Subject: |
Re: [O] [BUG] src_blocks - :results raw and replace don't work together |
Date: |
Mon, 07 Jul 2014 10:29:51 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (darwin) |
Hi Thorsten,
Thorsten Jolitz <address@hidden> 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
Re: [O] [BUG] src_blocks - :results raw and replace don't work together, Nick Dokos, 2014/07/07
Re: [O] [BUG] src_blocks - :results raw and replace don't work together, Thorsten Jolitz, 2014/07/07