You don't have to shell-quote-argument the executable name when you pass it to call-process. Actually, it doesn't work on Windows where actual executable files are suffixed with .exe. It's better to pass the name without quoting, so call-process can find it from exec-path.
Hello,
You don't have to
shell-quote-argument
the executable name when you pass it tocall-process
. Actually, it doesn't work on Windows where actual executable files are suffixed with.exe
. It's better to pass the name without quoting, socall-process
can find it fromexec-path
.