[email protected] writes: > I installed org-contrib and Org 9.7.39 from ELPA. I use the following > .emacs: > > (setq debug-on-error t) > ;; (require 'org) > > (custom-set-variables > '(package-selected-packages '(org org-contrib)) > '(org-babel-load-languages '((emacs-lisp . t) (latex . t)))) > > (add-hook 'after-init-hook > (lambda () > (require 'ox-extra) > (ox-extras-activate '(ignore-headlines)))) > > when I start emacs, I get (full backtrace below): > > (void-variable org-preview-latex-process-alist) > ... > Debugger entered--Lisp error: (void-variable org-preview-latex-process-alist) > #f(compiled-function () #<bytecode -0x82b6f101ac352bd>)() > funcall(#f(compiled-function () #<bytecode -0x82b6f101ac352bd>)) > eval((funcall #'#f(compiled-function () #<bytecode -0x82b6f101ac352bd>))) > custom-initialize-reset(org-babel-latex-process-alist (funcall > #'#f(compiled-function () #<bytecode -0x82b6f101ac352bd>)))
Circular dependencies are a known problem. That problem is extremely hard to fix without introducing new bugs. Do not expect fast resolution. The branch that started as a fix to circular dependencies quickly grew into 500+ commits. -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>
