Ensure all output of ,collect goes to (command-output).
This commit is contained in:
parent
f28a5f7dbb
commit
766ba98a31
|
@ -290,12 +290,12 @@ Kind should be one of: names maps files source tabulate"
|
||||||
(let ((after (memory-status memory-status-option/available #f)))
|
(let ((after (memory-status memory-status-option/available #f)))
|
||||||
(display "Before: " port)
|
(display "Before: " port)
|
||||||
(write before port)
|
(write before port)
|
||||||
(display " words free in semispace")
|
(display " words free in semispace" port)
|
||||||
(newline)
|
(newline port)
|
||||||
(display "After: " port)
|
(display "After: " port)
|
||||||
(write after port)
|
(write after port)
|
||||||
(display " words free in semispace")
|
(display " words free in semispace" port)
|
||||||
(newline))))
|
(newline port))))
|
||||||
|
|
||||||
(define memory-status-option/available (enum memory-status-option available))
|
(define memory-status-option/available (enum memory-status-option available))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue