Max Nikulin <maniku...@gmail.com> writes: > `org-version' with FULL argument checks whether org and org-loaddedfs > are loaded from the same directory and adds "mixed installation!" to the > version string. `org-submit-bug-report' puts full version to the message > subject but it is easily to miss this warning since it is in the middle > of the long string.
Yes, but unfortunately it does not handle early Org loading correctly. Try the following init.el: (require 'org) (add-to-list 'load-path (expand-file-name "/path/to/newest/org-mode/lisp")) Then run emacs -Q -l /path/to/init.el M-x org-version does not report anything suspicious even though M-x org-mode will error on current main because old 'org is trying to load files from the new load-path. Best, Ihor