branch: externals/org-transclusion commit 6a4145c49b4fb52eac6429eb1edc49257d801e4a Author: Noboru Ota <m...@nobiot.com> Commit: Noboru Ota <m...@nobiot.com>
fix: load extensions upon loading org-transclusion Library org-transclusion-font-lock was required regardless of the extension setting. This is the way it is supposed to be. --- org-transclusion.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/org-transclusion.el b/org-transclusion.el index 6b6d0a85f1..439995bef7 100644 --- a/org-transclusion.el +++ b/org-transclusion.el @@ -40,7 +40,6 @@ (require 'org-element) (require 'org-id) (require 'text-clone) -(require 'org-transclusion-font-lock) (require 'text-property-search) (require 'seq) @@ -1749,5 +1748,8 @@ FORCE will let this function ignore (error (message "Problems while trying to load feature `%s'" ext)))) (setq org-transclusion-extensions-loaded t))) +;; Load extensions upon loading this file +(org-transclusion-load-extensions-maybe) + (provide 'org-transclusion) ;;; org-transclusion.el ends here