From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: =?UTF-8?B?UmU6IFtCVUddIGBvcmctbG9hZC1ub2Vycm9yLW11c3RzdWZmaXg=?= =?UTF-8?B?wrQgaXMgbm90IGRlZmluZWQsIGludHJvZHVjZWQgYnkgNTQ4NGEzM2I=?= Date: Mon, 14 Jan 2013 14:44:57 -0700 Message-ID: <87vcazfnhi.fsf@gmail.com> References: <87a9sh3tsp.fsf@gmail.com> <878v80g6qu.fsf@Rainer.invalid> <8738y4ohx7.fsf@googlemail.com> <87wqvgmzxc.fsf@googlemail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:36863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TurqB-0004OQ-9H for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 16:45:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Turq9-0000bk-EM for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 16:45:11 -0500 Received: from mail-ie0-f179.google.com ([209.85.223.179]:61771) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Turq9-0000bW-7K for emacs-orgmode@gnu.org; Mon, 14 Jan 2013 16:45:09 -0500 Received: by mail-ie0-f179.google.com with SMTP id k14so5966055iea.10 for ; Mon, 14 Jan 2013 13:45:08 -0800 (PST) In-Reply-To: <87wqvgmzxc.fsf@googlemail.com> (Thorsten Jolitz's message of "Mon, 14 Jan 2013 00:22:07 +0100") 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: Thorsten Jolitz Cc: emacs-orgmode@gnu.org Thorsten Jolitz writes: > Stelian Iancu writes: > >>> I just updated Org-mode from Git a few minutes ago, and, after having >>> problems, deleted the repo and cloned it again, ran make and make >>> autoloads, but still cannot load org.el (or start with my usual >>> starter-kit customisations): >>> >> >> [SNIP] >> >> Just my 2c: in my case, all I did was: >> - clone the git repo >> - add org-mode/lisp to the load-path >> - make autoloads >> - require 'org >> If you are using the starter-kit, then Org-mode is required as the first step of your Emacs initialization. This is necessary so that the `org-babel-load-file' function can be used to load your customization from .org files. In this case the best (only) way to ensure that the most recent version of Org-mode is loaded is to add the path to your Org-mode install to the emacs command line with something like the following. emacs --eval "(add-to-list 'load-path \"~/src/org-mode/lisp/\")" This may be simplified with a command line alias like the following. alias emacs="emacs --eval '(add-to-list (quote load-path) \"~/src/org-mode/lisp/\")'" When I find time I plan to add this to the starter-kit documentation. -- Eric Schulte http://cs.unm.edu/~eschulte