From 843c4d085fd0fc2adb5b047810069af772fa08ab Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 25 May 2018 01:25:54 +0200 Subject: [PATCH] bin/doom: fix doom run --- bin/doom | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/doom b/bin/doom index 1e455534a..53e55de43 100755 --- a/bin/doom +++ b/bin/doom @@ -56,7 +56,6 @@ (setq doom-auto-accept t)))) ;; Bootstrap Doom - (setq noninteractive 'doom) (load (expand-file-name "init" emacs-dir) nil 'nomessage) @@ -68,6 +67,7 @@ ((not args) (error "Expecting a command")) ((let ((default-directory user-emacs-directory)) - (setq argv nil) + (setq argv nil + noninteractive 'doom) (doom-dispatch args)))))