From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: =?UTF-8?B?UmU6IFtCVUddIGBvcmctbG9hZC1ub2Vycm9yLW11c3RzdWZmaXg=?= =?UTF-8?B?wrQgaXMgbm90IGRlZmluZWQsIGludHJvZHVjZWQgYnkgNTQ4NGEzM2I=?= Date: Fri, 11 Jan 2013 17:31:15 +0100 Message-ID: <87vcb31y24.fsf@bzg.ath.cx> References: <87a9sh3tsp.fsf@gmail.com> <877gnlknlx.fsf@bzg.ath.cx> <87sj69ro12.fsf@gmail.com> <87pq1dj76n.fsf@bzg.ath.cx> <87hamprlob.fsf@gmail.com> <11306.1357839845@alphaville> <874niosy6w.fsf@gmail.com> <87txqodgix.fsf@bzg.ath.cx> <87txqovnv3.fsf@gmail.com> <874niodcry.fsf@bzg.ath.cx> <87vcb4spxe.fsf@gmail.com> <8738y8n0b2.fsf@gmail.com> <87lic0bpwj.fsf@bzg.ath.cx> <87hamo7gdk.fsf@gmail.com> <87wqvk9p5f.fsf@bzg.ath.cx> <87ehhrhpjl.fsf@bzg.ath.cx> <874niniv6g.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TthVn-0006Wl-Ju for emacs-orgmode@gnu.org; Fri, 11 Jan 2013 11:31:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TthVl-0008CA-ST for emacs-orgmode@gnu.org; Fri, 11 Jan 2013 11:31:19 -0500 Received: from mail-we0-f175.google.com ([74.125.82.175]:37560) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TthVl-0008Bz-LZ for emacs-orgmode@gnu.org; Fri, 11 Jan 2013 11:31:17 -0500 Received: by mail-we0-f175.google.com with SMTP id z53so942804wey.6 for ; Fri, 11 Jan 2013 08:31:17 -0800 (PST) In-Reply-To: <874niniv6g.fsf@gmail.com> (Eric Schulte's message of "Fri, 11 Jan 2013 08:41:27 -0700") 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: Eric Schulte Cc: Nick Dokos , Org Mode Mailing List Hi Eric, Eric Schulte writes: > Great, thank you for running this to ground. After my last email I ran > into the problem again, but didn't have the energy to continue > debugging. Yeah, I know how depressing this can be.. > To follow up on the instillation instructions. Those in the manual look > pretty good (I'm speaking specifically of org.texi in the master branch > of the repository, not the online version of the manual which seems to > be out of date and quickly dives into "make help" specifics). My only > suggestion would be that they include the following step. > > ;; emacs-lisp > (require 'org) > (org-reload) Both lines slow down Emacs startup quite a lot (especially the second one!) and they are not necessary once the load-path is correct. (require 'org) is only necessary when your are calling an org function from within your .emacs.el, because we need to get the proper autoloads before calling this function... I could add a note about this if you think it's useful. But normally, again, the load-path is enough. As for (org-reload) I simply would like to get rid of it one day :) -- Bastien