From 1b98422291260535b4cdf4cc4e04c92593dfcc9c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 9 Jul 2018 15:29:38 +0200 Subject: [PATCH] $* -> %* in bin/doom.cmd --- bin/doom.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/doom.cmd b/bin/doom.cmd index 2eeb0f2fe..810f3fb06 100644 --- a/bin/doom.cmd +++ b/bin/doom.cmd @@ -5,9 +5,9 @@ PUSHD "%~dp0" >NUL IF %1=="run" ( SHIFT - emacs -Q $* -l init.el -f "doom|run-all-startup-hooks" + emacs -Q %* -l init.el -f "doom|run-all-startup-hooks" ) ELSE ( - emacs --quick --script ./doom -- $* + emacs --quick --script ./doom -- %* ) POPD >NUL