Noting for myself, whenever I get an `org-preserve-local-variables` error, this is the way to solve it:
# bash
cd ~/.emacs.d/elpa
find org*/*.elc -print0 | xargs -0 rm
(where the elpa directory might be in a different location depending which version/branch you’re on.)
And then run `M-x spacemacs/recompile-elpa`.
Mentions