$* -> %* in bin/doom.cmd

This commit is contained in:
Henrik Lissner 2018-07-09 15:29:38 +02:00
parent 04c66829eb
commit 1b98422291
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -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