By running this (cl-delete-if (lambda (el) (string-match-p "/usr/share/.*org" el)) load-path)
I'm able to hide org and now the org-plus-contrib loads up, yay! Thanks for the hints. On 21 August 2017 at 01:40, Kaushal Modi <kaushal.m...@gmail.com> wrote: > On Sun, Aug 20, 2017, 4:25 PM Nicolas Goaziou <m...@nicolasgoaziou.fr> > wrote: >> >> >> > then I can try to investigate what could be causing the Emacs org >> > to load. I cannot see how that is possible since it is not even >> > available on the elisp path anymore. >> > >> > Is there a way to check which elisp files have been loaded? Then I can >> > grep for anything from the emacs org install instead of my local >> > install. >> >> `locate-library' may help. Also, `load-path' can give a clue. Try with >> a bare configuration, i.e., with just >> >> (require 'package) >> (package-initialize) >> >> It can be tricky to find out what is loading bundled Org too early. >> Enjoy the Frankenorg. > > > :) > > M-x list-load-path-shadows will also help. Pay attention to shadows on org > packages. > > -- > > Kaushal Modi