common-lisp.net
/
projects/cffi/cffi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
bd316af
)
Arguments to CONCATENATE need to be sequences.
author
easye
<evenson.not.org@gmail.com>
Mon, 29 Oct 2012 15:14:29 +0000 (16:14 +0100)
committer
Luís Oliveira
<loliveira@common-lisp.net>
Sun, 4 Nov 2012 14:27:30 +0000 (14:27 +0000)
grovel/invoke.lisp
patch
|
blob
|
blame
|
history
diff --git
a/grovel/invoke.lisp
b/grovel/invoke.lisp
index
e086ff9
..
1b28878
100644
(file)
--- a/
grovel/invoke.lisp
+++ b/
grovel/invoke.lisp
@@
-39,7
+39,7
@@
#+abcl
(defun %invoke (command arglist)
(let ((cmdline (reduce (lambda (str1 str2)
- (concatenate 'string str1 #\Space str2))
+ (concatenate 'string str1 " " str2))
arglist :initial-value command))
(stream (make-string-output-stream)))
(values (ext:run-shell-command cmdline :output stream)