From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: org-version reported as 6.33x after upgrading to the "latest and greatest" with Emacs' Package Manager Date: Mon, 30 Jan 2012 22:32:58 +0530 Message-ID: <81ty3dm8cd.fsf@gmail.com> References: <817h09i9rp.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrudP-0001Te-L6 for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 12:03:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RrudO-0005Hh-Gf for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 12:03:15 -0500 Received: from mail-pz0-f41.google.com ([209.85.210.41]:38139) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrudO-0005HF-9a for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 12:03:14 -0500 Received: by dake40 with SMTP id e40so4037629dak.0 for ; Mon, 30 Jan 2012 09:03:13 -0800 (PST) In-Reply-To: (Angel de Vicente's message of "Mon, 30 Jan 2012 15:30:14 +0000") 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: Angel de Vicente Cc: emacs-orgmode@gnu.org > Any idea on how to test if org is getting confused with 6.33 beyond > reporting that as its version? In your .emacs file, *just before* package-initialize add this and restart Emacs. (when (featurep 'org) (error "Some mysterious force has already loaded org. Investigate why this is so.")) In the above operation, if you see that some mysterious force is indeed operating, demystify the force by adding the following line to the *top* of your .emacs and restart emacs. (setq debug-on-error t) (eval-after-load 'org '(error "Some mysterious force is loading Org")) Note that Org could be loaded automatically from system path, if somewhere in the init sequence an Org file is visited (are you using desktop save or session save related libraries?) or you have some custom org related code. It is possible that backtrace may give you an hint on what possibly could be happening in your load sequence. Jambunathan K. In my .emacs file I have ;; Org-mode ;;******************************************** (require 'org-install) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (define-key global-map "\C-cb" 'org-iswitchb) (global-font-lock-mode 1) (setq org-log-done t) and at the end of the file (setq load-path (cons "~/Emacs-custom" load-path)) (require 'package) (package-initialize)