From 60bf93eb9a8ed2199d0f67f22c6e7add0fb22cde Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 15 Apr 2025 14:58:40 -0400 Subject: [PATCH] fix(cli): doomscript: end-of-file error A regression introduced in bac90c0. The extra --eval isn't necessary in bin/doomscript because it loads early-init.el (and thus, lisp/doom.el) sooner than bin/doom does. Fix: #8362 Amend: def4579a9f45 --- bin/doomscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/doomscript b/bin/doomscript index 0afd2e3d9..9babc3030 100755 --- a/bin/doomscript +++ b/bin/doomscript @@ -38,7 +38,7 @@ esac # directory from `load-path', which would prevent Doom from manually loading the # site files later. These are important on some systems or deployment methods # (like Snap or NixOS). -emacs="$EMACS -q --no-site-file --batch --eval \"(setq warning-inhibit-types '((files missing-lexbind-cookie)))\"" +emacs="$EMACS -q --no-site-file --batch" # Doom respects $EMACSDIR to tell it where Doom lives. If it fails, then this is # either isn't bash, or it's a posix shell being directly sourced with sh, which