From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: DSPAM noob-installation Date: Mon, 15 Jan 2007 15:14:37 +0100 Message-ID: <873b6cv0ky.fsf@tallis.lumiere.ens.fr> References: <20070115121126.GB7328@skynet.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H6SbS-0003jw-CZ for emacs-orgmode@gnu.org; Mon, 15 Jan 2007 09:14:26 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H6SbQ-0003jG-L1 for emacs-orgmode@gnu.org; Mon, 15 Jan 2007 09:14:26 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H6SbQ-0003j6-H1 for emacs-orgmode@gnu.org; Mon, 15 Jan 2007 09:14:24 -0500 Received: from [213.36.80.91] (helo=mail.libertysurf.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1H6SbQ-00050u-4m for emacs-orgmode@gnu.org; Mon, 15 Jan 2007 09:14:24 -0500 Received: from tallis.lumiere.ens.fr (88.122.242.12) by mail.libertysurf.net (7.3.117.3) id 45A681D00010EAC0 for emacs-orgmode@gnu.org; Mon, 15 Jan 2007 15:10:57 +0100 In-Reply-To: <20070115121126.GB7328@skynet.ie> (Sergio Dominguez's message of "Mon\, 15 Jan 2007 12\:11\:26 +0000") 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: emacs-orgmode@gnu.org Sergio Dominguez writes: > However, I do not get to make it start, I have followed all the steps > in the manual and keep on getting: > > Symbol's value as variable is void: 'org-install. 1. Make sure you add the directory containing org to the load-path. For example, my org directory is "~/elisp/testing/org/", so the load-path is : (add-to-list 'load-path "~/elisp/testing/org/") 2. Make sure Org-Mode is called when finding any .org file: (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) 3. Then require the org-install library: (require 'org-install) Hope this helps, -- Bastien