From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas S. Dye Subject: Re: [babel] cannot code to execute since changing to emacs starter kit Date: Sun, 7 Mar 2010 08:22:39 -1000 Message-ID: <6557BD40-2876-45E2-845B-A33F75C78C38@tsdye.com> References: <2c75873c1003070852n56bd4246g7fd196f2f9aa6f53@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NoL7o-00017t-Ai for emacs-orgmode@gnu.org; Sun, 07 Mar 2010 13:22:48 -0500 Received: from [140.186.70.92] (port=60698 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NoL7m-00017l-Kx for emacs-orgmode@gnu.org; Sun, 07 Mar 2010 13:22:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NoL7l-00076B-La for emacs-orgmode@gnu.org; Sun, 07 Mar 2010 13:22:46 -0500 Received: from outbound-mail-359.bluehost.com ([66.147.249.253]:35272) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1NoL7l-00075p-AE for emacs-orgmode@gnu.org; Sun, 07 Mar 2010 13:22:45 -0500 In-Reply-To: <2c75873c1003070852n56bd4246g7fd196f2f9aa6f53@mail.gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Graham Smith Cc: emacs-orgmode@gnu.org On Mar 7, 2010, at 6:52 AM, Graham Smith wrote: > I guess I am being stupid here, but I have changed my set up to using > Eric's (Schulte) start up kit for emacs and now when I try to use C-c > C-c to execute a code block I get an error > > C-c C-c can do nothing useful at this location > > As far as I can see form the files that came with the start up kit, > babel should be initiated. > > Here is my bit of code; > > > ** Tarsus data > #+srcname:Tarsus > #+begin_src R :session BirdData > Tarsus<-c(22.3,19.7,20.8,20.3,20.8,21.5,20.6,21.5) > #+end_src > > Which was working during my try out of babel a few months ago. > > Once again I am stuck and would appreciate some help. > > This is emacs 23.1.1, and orgmode 6.34c.73.gb3e9, on Ubuntu 9.10 > > Many thanks, > > Graham > Hi Graham, Your example is R code. I have this is in my starter-kit: *** ON Org-babel R setup #+begin_src emacs-lisp :tangle yes (require 'org-babel-R) ;; requires R and ess-mode (add-to-list 'org-babel-noweb-error-langs "R") #+end_src Perhaps when you changed the setup you got rid of these by mistake? HTH, Tom