diff options
author | Jordan Brown <mrhmouse@gmail.com> | 2016-09-21 10:07:21 -0400 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2016-09-30 06:06:25 +0200 |
commit | cec661b7d0e6d0eda31a97b5621d361ae5c71de3 (patch) | |
tree | 7554f931913461b24c41abc969d4b391f8e31a31 /elisp/geiser-chez.el | |
parent | f8ddc4e540ec9c193efde588e6bb8cb887212820 (diff) | |
download | geiser-guile-cec661b7d0e6d0eda31a97b5621d361ae5c71de3.tar.gz geiser-guile-cec661b7d0e6d0eda31a97b5621d361ae5c71de3.tar.bz2 |
Use (car (process-lines ...)) instead of (shell-command ...)
`shell-command` assumes Bourne-shell-compatible quoting, which
doesn't work when the user isn't using a Bourne-compatible shell.
Instead of futzing about with quoting, we can just use `process-lines`
to execute a process and pass it arguments directly.
Diffstat (limited to 'elisp/geiser-chez.el')
-rw-r--r-- | elisp/geiser-chez.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/elisp/geiser-chez.el b/elisp/geiser-chez.el index 1793cfd..17b6c8d 100644 --- a/elisp/geiser-chez.el +++ b/elisp/geiser-chez.el @@ -96,9 +96,7 @@ This function uses `geiser-chez-init-file' if it exists." (defconst geiser-chez-minimum-version "9.4") (defun geiser-chez--version (binary) - (shell-command-to-string - (format "%s --version" - (shell-quote-argument binary)))) + (car (process-lines binary "--version"))) (defun geiser-chez--startup (remote) (let ((geiser-log-verbose-p t)) |