From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: =?UTF-8?B?UmU6IFtCVUddIGBvcmctbG9hZC1ub2Vycm9yLW11c3RzdWZmaXg=?= =?UTF-8?B?wrQgaXMgbm90IGRlZmluZWQsIGludHJvZHVjZWQgYnkgNTQ4NGEzM2I=?= Date: Thu, 10 Jan 2013 14:37:38 -0500 Message-ID: <2980.1357846658@alphaville> 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> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtRdr-0007M0-2b for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 18:34:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtRdo-0002nm-TF for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 18:34:35 -0500 Received: from g1t0026.austin.hp.com ([15.216.28.33]:6973) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtRdo-0002nd-M3 for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 18:34:32 -0500 In-Reply-To: Message from Eric Schulte of "Thu, 10 Jan 2013 11:13:59 MST." <874niosy6w.fsf@gmail.com> 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: Bastien , Org Mode Mailing List Eric Schulte wrote: > I attempted to apply your suggestions to my init.el resulting in the > following > > > (add-hook 'after-init-hook > `(lambda () > (require 'org) > (setq features (remove 'org-macs features)) > (add-to-list 'load-path "~/.emacs.d/src/org-mode/lisp/") > (load-file "~/.emacs.d/src/org-mode/lisp/org.el") > (org-reload))) > > > It yields these errors on startup > > *Messages* > Loading /home/eschulte/.emacs.d/src/org-mode/lisp/org.el (source)... > Package assoc is obsolete! > Loading /home/eschulte/.emacs.d/elpa/org-20121231/org-loaddefs.el (source)...done > Problems while trying to load feature `org-jsinfo' > eval-buffer: Symbol's function definition is void: org-define-obsolete-function-alias > > It looks like removing items from `features' is dangerous. > I don't think so: I got the org-define-obsolete-function-alias error when trying to org-reload this morning (resolved by manually loading org-compat.el before doing the org-reload again): it's another instance of the same problem. You also don't seem to have an org-loaddefs.el in the git clone, so it loads the one it finds in the ELPA dir. You should ``make autoloads''. > If this problem is specific to my situation I'm happy to ignore it until > I can update my elpa version of Org-mode to a newer one. Alternately I > could just remove my ELPA install of Org-mode, as it was only installed > to answer questions on the mailing list, and I don't think side-by-side > ELPA and source Org-modes are necessarily something that needs to be > supported. > I'm pretty sure it is. It would probably be better to have two separate installations and have different init files for each. The side-by-side installations is an invitation to a franken-install. Nick