diff options
author | Damien Cassou <damien@cassou.me> | 2017-08-29 16:44:25 +0200 |
---|---|---|
committer | Svend Sorensen <svend@svends.net> | 2017-08-29 16:26:20 -0700 |
commit | 04bea9e06009c4a073101bed8a251597002d13c3 (patch) | |
tree | f995999646ad6dc4290be2a5aeeb5f86b471f667 /contrib/emacs | |
parent | 38a419408360a37070600ca9f9102fbd7a703fc7 (diff) | |
download | pass-04bea9e06009c4a073101bed8a251597002d13c3.tar.gz pass-04bea9e06009c4a073101bed8a251597002d13c3.tar.bz2 pass-04bea9e06009c4a073101bed8a251597002d13c3.zip |
emacs: --run-async: Quote shell arguments
This is important for filenames with special characters such as spaces
and parenthesis.
Diffstat (limited to 'contrib/emacs')
-rw-r--r-- | contrib/emacs/password-store.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el index 879eb2f..02ff1b8 100644 --- a/contrib/emacs/password-store.el +++ b/contrib/emacs/password-store.el @@ -83,10 +83,11 @@ outputs error message on failure." "Run pass asynchronously with ARGS. Nil arguments are ignored." - (with-editor-async-shell-command - (mapconcat 'identity - (cons password-store-executable - (delq nil args)) " "))) + (let ((args (mapcar #'shell-quote-argument args))) + (with-editor-async-shell-command + (mapconcat 'identity + (cons password-store-executable + (delq nil args)) " ")))) (defun password-store--run-init (gpg-ids &optional folder) (apply 'password-store--run "init" |