From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Different behavior of exported results in org-babel Date: Fri, 17 Jan 2014 14:04:30 -0500 Message-ID: <87y52e1lc1.fsf@alphaville.bos.redhat.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48926) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W4Eiu-0003gJ-Co for emacs-orgmode@gnu.org; Fri, 17 Jan 2014 14:05:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W4Eim-0006n0-8M for emacs-orgmode@gnu.org; Fri, 17 Jan 2014 14:04:56 -0500 Received: from plane.gmane.org ([80.91.229.3]:43426) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W4Eim-0006mm-1T for emacs-orgmode@gnu.org; Fri, 17 Jan 2014 14:04:48 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W4Eik-0005vB-Vh for emacs-orgmode@gnu.org; Fri, 17 Jan 2014 20:04:46 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Jan 2014 20:04:46 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Jan 2014 20:04:46 +0100 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 Ahmadou Dicko writes: > Hi everyone, > > I use the latest version of org-mode (from github) and I update it daily. > I noticed some changes recently in org-babel (ob-R). > > Here's a sample code to explain the problem : > > #+TITLE: Test export > #+AUTHOR: Ahmadou H. DICKO > #+PROPERTY: session *R* > #+PROPERTY: cache yes  > #+PROPERTY: exports both > #+PROPERTY: tangle yes > #+OPTIONS: toc:nil > > * Minimal example >  This works quite well > #+begin_src R :exports both :results output > mtcars[1:2, 1:2] > #+end_src > > I just want the output without code but I have this > 'bf7c7b2c131fcf88c89639d10326a972f0ff25' before the code > #+begin_src R :exports results :results output  > mtcars[1:2, 1:2] > #+end_src > I used your reproducer (thanks for providing it!) and was able to duplicate your results (more or less - I get this 7c7b2c131fcf88c89639d10326a972f0ff25]: before the second set of results). If I evaluate both code blocks by hand in the org buffer and *then* export, I don't get the extra junk. > I use emacs 24.3.1, org-version 8.2.5f (updated this morning) and R > 3.0.2 You can find attached the sample code and output, if you have > something different please let me know. > Nick