From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Gauland Subject: Re: [PATCH] Fix R table import Date: Mon, 5 Jan 2015 14:54:37 +1300 Message-ID: References: <87zj9z12s3.fsf@gmail.com> <871tnavzcf.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7wsR-0003JH-FO for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 20:54:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y7wsQ-0004kP-Cw for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 20:54:39 -0500 Received: from mail-qc0-x22c.google.com ([2607:f8b0:400d:c01::22c]:63230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7wsQ-0004kL-7e for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 20:54:38 -0500 Received: by mail-qc0-f172.google.com with SMTP id m20so14758155qcx.17 for ; Sun, 04 Jan 2015 17:54:37 -0800 (PST) In-Reply-To: <871tnavzcf.fsf@gmail.com> 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: Michael Gauland , Org-mode My git has so many more commits because I'm sloppy about my local changes. I had been using ESS 5.14 (from ELPA). When I switched to the latest git version, the problem (at least seems to have) went away. For my needs, I don't think this needs any further investigation, though I'm happy to help if anyone else thinks it is important. On Mon, Jan 5, 2015 at 1:35 PM, Aaron Ecay wrote: > Hi Michael, > > Hmm. I have > > Org-mode version 8.3beta (release_8.3beta-695-g390015 @ /home/aecay/devel= opment/org-mode/lisp/) > > The git sha 034d00 from your org-version isn=E2=80=99t in my checkout. Y= ours > also thinks it=E2=80=99s 60ish commits ahead of where mine is (758 vs. 69= 5). > This is very strange; I don=E2=80=99t know what to make of it. > > I have: > > GNU Emacs 25.0.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 3.14.6) > > What is your version of ESS? (C-h v ess-version) It=E2=80=99s 14.11 for= me > (actually a melpa install of the latest git version). > > I executed the attached elisp file, then loaded the attached org file, > and could not reproduce the issue. When doing so, the code that org > executes is echoed to the *R* buffer. Can you send what is echoed for > you? (You will have to edit in the appropriate paths to your org and > ess installations, unless they are in emacs=E2=80=99s default load-path) > > I get: > > data.table <- local({ > con <- textConnection( > "\"A\" \"B\" \"C\" > \"115\" \"76\" \"60\"" > ) > res <- utils::read.table( > con, > header =3D TRUE, > row.names =3D NULL, > sep =3D "\t", > as.is =3D TRUE > ) > close(con) > res > }) > data.table > 'org_babel_R_eoe' > > > > Thanks, > > -- > Aaron Ecay >