From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: global keys not working on version 20130401 Date: Wed, 03 Apr 2013 12:31:09 +0200 Message-ID: <87bo9vucr6.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40223) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNKyH-0000Au-Qg for emacs-orgmode@gnu.org; Wed, 03 Apr 2013 06:31:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UNKyF-000426-Vc for emacs-orgmode@gnu.org; Wed, 03 Apr 2013 06:31:13 -0400 Received: from mail-wi0-x232.google.com ([2a00:1450:400c:c05::232]:32776) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNKyF-000420-Po for emacs-orgmode@gnu.org; Wed, 03 Apr 2013 06:31:11 -0400 Received: by mail-wi0-f178.google.com with SMTP id ez12so1345126wid.5 for ; Wed, 03 Apr 2013 03:31:11 -0700 (PDT) In-Reply-To: (Chris Henderson's message of "Wed, 3 Apr 2013 19:44:35 +1100") 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: Chris Henderson Cc: emacs-orgmode@gnu.org Hi Chris, Chris Henderson writes: > I have installed version 20130401 on emacs 24.3 on os x mountain lion > via M-x package list. But my global keys don't seem to be working. I > get an error: See this excerpt from http://orgmode.org/elpa.html: ,---- | By default, Emacs loads packages after it loads your Emacs init file. | | We recommend intializing packages as early as possible in your Emacs | init file so that your Org configuration will be correctly handled: | | ;; -*- emacs-lisp -*- | (package-initialize) ;; Initialize & Install Package | ;; (setq org-...) ;; Your custom settings | | The package initialization should happen before you require Org and | set any Org options. `---- You surely need to add (package-initialize) before Org options in your .emacs. Otherwise, Emacs will load the built-in Org and you will end up with mixed autoloads. HTH, -- Bastien