emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Jambunathan K <kjambunathan@gmail.com>
To: Angel de Vicente <angelv@iac.es>
Cc: emacs-orgmode@gnu.org
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	[thread overview]
Message-ID: <81ty3dm8cd.fsf@gmail.com> (raw)
In-Reply-To: <yegipjt4395.fsf@carro.ll.iac.es> (Angel de Vicente's message of "Mon, 30 Jan 2012 15:30:14 +0000")


> 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)

  reply	other threads:[~2012-01-30 17:03 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-30 11:40 org-version reported as 6.33x after upgrading to the "latest and greatest" with Emacs' Package Manager Angel de Vicente
2012-01-30 13:45 ` Jambunathan K
2012-01-30 15:30   ` Angel de Vicente
2012-01-30 17:02     ` Jambunathan K [this message]
2012-01-31  5:19       ` Angel de Vicente
2012-01-30 16:35   ` Sankalp
2012-01-30 17:50 ` Jambunathan K

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=81ty3dm8cd.fsf@gmail.com \
    --to=kjambunathan@gmail.com \
    --cc=angelv@iac.es \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).