From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Ecay Subject: Re: [PATCH] Fix R table import Date: Sun, 04 Jan 2015 19:35:28 -0500 Message-ID: <871tnavzcf.fsf@gmail.com> References: <87zj9z12s3.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7vdv-0002DV-BD for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 19:35:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y7vdq-0006sH-FM for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 19:35:35 -0500 Received: from mail-qc0-x231.google.com ([2607:f8b0:400d:c01::231]:45653) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7vdq-0006rL-6x for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 19:35:30 -0500 Received: by mail-qc0-f177.google.com with SMTP id x3so14779215qcv.36 for ; Sun, 04 Jan 2015 16:35:29 -0800 (PST) In-Reply-To: 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 Michael Gauland , Org-mode --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Michael, Hmm. I have Org-mode version 8.3beta (release_8.3beta-695-g390015 @ /home/aecay/develop= ment/org-mode/lisp/) The git sha 034d00 from your org-version isn=E2=80=99t in my checkout. You= rs also thinks it=E2=80=99s 60ish commits ahead of where mine is (758 vs. 695). 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' --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=r-table.el Content-Transfer-Encoding: quoted-printable (add-to-list 'load-path "~/development/org-mode/lisp") (add-to-list 'load-path "~/development/org-mode/contrib/lisp") (add-to-list 'load-path "~/.emacs.d/elpa/ess-20141226.1023/lisp") (require 'org) (require 'org-table) (require 'ess-site) (setq org-confirm-babel-evaluate nil) (org-babel-do-load-languages 'org-babel-load-languages '((R . t))) --=-=-= Content-Type: application/vnd.lotus-organizer Content-Disposition: attachment; filename=r-table.org Content-Transfer-Encoding: base64 IytOQU1FOiBkYXRhCnwgICBBIHwgICBCIHwgIEMgfAp8LS0tLS0rLS0tLS0rLS0tLXwKfCAxMTUg fCAgNzYgfCA2MCB8CgojK0JFR0lOX1NSQyBSIDpyZXN1bHRzIG91dHB1dCA6ZXhwb3J0cyBib3Ro IDpzZXNzaW9uIDp2YXIgZGF0YS50YWJsZT1kYXRhCmRhdGEudGFibGUKIytFTkRfU1JDCgojK1JF U1VMVFM6CjogICAgIEEgIEIgIEMKOiAxIDExNSA3NiA2MAoK --=-=-= Content-Type: text/plain Thanks, -- Aaron Ecay --=-=-=--