From 2f1efeb5f7dacb92514ba5ca33124d447b553423 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Tue, 10 Jan 2023 09:12:48 +0100 Subject: [PATCH] removed async tangling, didn't work --- config.org | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/config.org b/config.org index edd81a0..373393d 100644 --- a/config.org +++ b/config.org @@ -47,13 +47,14 @@ asynchronously." (lambda () (or (not (process-live-p (get-process "tangle-process"))) (y-or-n-p "\"me/tangle-config\" is running; kill it? ")))) - ;; tangle config asynchronously - ;; async only on linux because bash is called - (if *sys/linux* - (me/async-process - (format "emacs %s --batch --eval '(org-babel-tangle nil \"%s\")'" config-org config-el) - "tangle-process") - (format "emacs %s --batch --eval '(org-babel-tangle nil \"%s\")'" config-org config-el)) +; ;; tangle config asynchronously ;; for now not async anymore +; ;; async only on linux because bash is called +; (if *sys/linux* +; (me/async-process +; (format "emacs %s --batch --eval '(org-babel-tangle nil \"%s\")'" config-org config-el) +; "tangle-process") +; (format "emacs %s --batch --eval '(org-babel-tangle nil \"%s\")'" config-org config-el)) + (org-babel-tangle-file config-org config-el) (message "reloading user-init-file") (load-file config-el))