From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-R tutorial on Worg Date: Wed, 04 Feb 2009 13:50:22 -0500 Message-ID: <9427.1233773422@gamaville.dokosmarshall.org> References: <20090204045907.GA7288@stats.ox.ac.uk> <2c75873c0902041030m769ac77fva64375ca91946fcf@mail.gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LUmqp-0004AP-Bw for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 13:51:55 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LUmqn-00048S-Er for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 13:51:54 -0500 Received: from [199.232.76.173] (port=51624 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LUmqn-000487-6A for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 13:51:53 -0500 Received: from qmta01.westchester.pa.mail.comcast.net ([76.96.62.16]:44014) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LUmqm-0001NQ-MD for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 13:51:52 -0500 In-Reply-To: Message from Graham Smith of "Wed, 04 Feb 2009 18:30:23 GMT." <2c75873c0902041030m769ac77fva64375ca91946fcf@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 org-mode mailing list I haven't looked at org-R but given the error message, it probably does not contain a provide like so: (provide 'org-R) In that case, (require 'org-R) will not work. Perhaps Dan can add it for the next version. In the meantime, you can either add the provide line to your copy of org-R.el or try (load-library "org-R") This should work if org-R.el[c] is found in the load-path. Otherwise try (load-file "/path/to/org-R.el") HTH, Nick