From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Landis Subject: Re: org-export-blocks-preprocess: Marker does not point anywhere Date: Thu, 01 Mar 2012 08:31:30 -0500 Message-ID: <4F4F7A32.4050004@isciences.com> References: <4F4EE5BD.1090805@isciences.com> <15717.1330580846@alphaville> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37947) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S366f-0000Aq-GB for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 08:31:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S366Y-0001ik-9f for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 08:31:41 -0500 Received: from mail-vw0-f41.google.com ([209.85.212.41]:33120) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S366Y-0001iQ-5D for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 08:31:34 -0500 Received: by vbbey12 with SMTP id ey12so508440vbb.0 for ; Thu, 01 Mar 2012 05:31:31 -0800 (PST) In-Reply-To: <15717.1330580846@alphaville> 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: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org On 3/1/2012 12:47 AM, Nick Dokos wrote: > Matthew Landis wrote: > >> Hello orgmode fans, >> >> Another issue with org and R giving me headaches tonight. >> >> In the example below, using the :session header argument seems to cause problems with export to html. On export, the *R* buffer is >> opened up, but no file is created. in the *Messages* buffer, I see >> >> org-export-blocks-preprocess: Marker does not point anywhere >> >> however, if I try to export again, with the *R* buffer already open, >> then things work fine. This is an OK work around I guess, but I >> thought someone ought to know about it. >> >> Session info: >> Windows 7, 64 bit. >> Emacs version: GNU Emacs 23.4.1 (i386-mingw-nt6.1.7601) of 2012-02-04 >> on MARVIN >> Org mode version 7.8.03 >> ESS version 5.14 >> R version 2.14.1 Example now included! (Thanks Nick, for pointing that out...) #+begin_src R :session :exports code :results silent x <- runif(n = 100, min = 0, max = 20) y <- 4*x^2 + 0.3*x + 3 + rnorm(100, sd = 200) #+end_src