From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Berry Subject: Re: org babel problems with (org-babel-read "*R*") Date: Tue, 9 Apr 2013 16:21:18 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45121) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPbIh-0000Dt-8j for emacs-orgmode@gnu.org; Tue, 09 Apr 2013 12:21:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPbIe-0000kf-Nd for emacs-orgmode@gnu.org; Tue, 09 Apr 2013 12:21:39 -0400 Received: from plane.gmane.org ([80.91.229.3]:33738) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPbIe-0000k4-GH for emacs-orgmode@gnu.org; Tue, 09 Apr 2013 12:21:36 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UPbIX-0002VB-Q6 for emacs-orgmode@gnu.org; Tue, 09 Apr 2013 18:21:30 +0200 Received: from 137.110.34.176 ([137.110.34.176]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Apr 2013 18:21:29 +0200 Received: from ccberry by 137.110.34.176 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Apr 2013 18:21:29 +0200 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 Thomas Alexander Gerds biostat.ku.dk> writes: > > > after upgrading to the latest bleeding edge version I have problems > executing org-babel R blocks where the session is named *R*. the error > is this: > > ELISP> (org-babel-read "*R*") > *** Eval error *** Symbol's value as variable is void: *R* > > did I miss any conventions or is this a bug? > This commit http://orgmode.org/cgit.cgi/org-mode.git/commit /?id=bde2348c9ecc87972d21a46a91d73ad3916650b8 broke all my :session *R* headers. But :session "*R*" works. C-h f org-babel-read should mention *XYZ* is treated as lisp. Maybe (org-babel-read "\"*R*\"") works for you. Or I suppose you could hack this with (setq *R* "*R*") HTH,