Bastien writes:
> You need to reload uncompiled files with C-u M-x org-reload RET

I don't see the relation to the original problem, which is caused by a
switch from master to maint.  This will not work without at least
unloading Org or better, restarting Emacs.

> BTW, I think it should be the defaut behavior of org-reload.
>
> Achim, any objection of making it the default, while 
> C-u M-x org-reload RET would reload compiled files if any?

I think that the current default, which has been in place for years, is
just fine.  Reloading uncompiled is only useful for when you want to
create backtraces.  If you always want to run uncompiled, then you can
opt to never compile Org and org-reload will follow suit, if you clean
up load-path to not contain older (compiled) Org distributions:

--8<---------------cut here---------------start------------->8---
(setq load-path
      (delq nil (mapcar
                 (lambda (p)
                   (when (not (string-match "lisp/org$" p))
                     p))
                 load-path)))
(add-to-list 'load-path "/path/to/uncompiled/org")
(load "org-loaddefs.el" nil nil 'nosuffix)
--8<---------------cut here---------------end--------------->8---

Of course you should not do this after Org has already been loaded.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptation for Waldorf Blofeld V1.15B11:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada


Reply via email to