mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Fix bug loading org-modules
This commit is contained in:
parent
8edeffdf01
commit
25f3ff5634
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@
|
|||
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp :noweb yes
|
||||
(let ((modules (mapcar (lambda (m) (make-symbol (car m)))
|
||||
(let ((modules (mapcar (lambda (m) (intern (car m)))
|
||||
'<<org-module-table()>>)))
|
||||
(mapcar (lambda (m) (add-to-list 'org-modules m))
|
||||
modules))
|
||||
|
|
Loading…
Reference in a new issue