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)))
|
||||
(display "Before: " port)
|
||||
(write before port)
|
||||
(display " words free in semispace")
|
||||
(newline)
|
||||
(display " words free in semispace" port)
|
||||
(newline port)
|
||||
(display "After: " port)
|
||||
(write after port)
|
||||
(display " words free in semispace")
|
||||
(newline))))
|
||||
(display " words free in semispace" port)
|
||||
(newline port))))
|
||||
|
||||
(define memory-status-option/available (enum memory-status-option available))
|
||||
|
||||
|
|
Loading…
Reference in New Issue