mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
snow-post should quote values
This commit is contained in:
parent
9993b27486
commit
7e0b2730f4
1 changed files with 5 additions and 2 deletions
|
@ -772,7 +772,9 @@
|
|||
=> (lambda (y)
|
||||
`("-F" ,(string-append
|
||||
(display-to-string (car x)) "="
|
||||
(display-to-string (cdr y))))))
|
||||
(write-to-string
|
||||
(display-to-string (cdr y)))
|
||||
"\""))))
|
||||
((and (pair? (cdr x)) (assq 'file (cdr x)))
|
||||
=> (lambda (y)
|
||||
`("-F" ,(string-append
|
||||
|
@ -781,7 +783,8 @@
|
|||
(else
|
||||
`("-F" ,(string-append
|
||||
(display-to-string (car x)) "="
|
||||
(display-to-string (cdr x)))))))
|
||||
(write-to-string
|
||||
(display-to-string (cdr x))))))))
|
||||
params)
|
||||
,(uri->string uri))))
|
||||
(open-input-bytevector (process->bytevector cmd))))
|
||||
|
|
Loading…
Add table
Reference in a new issue