[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] global keys not working on version 20130401
From: |
Bastien |
Subject: |
Re: [O] global keys not working on version 20130401 |
Date: |
Wed, 03 Apr 2013 12:31:09 +0200 |
User-agent: |
Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3.50 (gnu/linux) |
Hi Chris,
Chris Henderson <address@hidden> 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