mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix wrong-type-arg: stringp when tangling config.org
This commit is contained in:
@ -33,8 +33,11 @@ byte-compiled from.")
|
||||
;; modifies the buffer so we must do it in a copy to prevent
|
||||
;; stepping on the user's toes.
|
||||
(with-temp-file backup
|
||||
(let ((buffer-file-name backup))
|
||||
(let ((buffer-file-name backup)
|
||||
(org-inhibit-startup t)
|
||||
org-mode-hook)
|
||||
(insert-file-contents org)
|
||||
(org-mode)
|
||||
(org-export-expand-include-keyword)
|
||||
(org-babel-tangle nil dest)))
|
||||
t)
|
||||
|
Reference in New Issue
Block a user