mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-07 13:16:36 +02:00
Merge pull request #388 from ecraven/stderr
Display warning on stderr, not stdout.
This commit is contained in:
commit
71b00779bc
1 changed files with 2 additions and 2 deletions
|
@ -295,7 +295,7 @@
|
|||
(cond
|
||||
((pair? mods)
|
||||
(display name out)
|
||||
(display " is exported by:\n")
|
||||
(display " is exported by:\n" out)
|
||||
(for-each
|
||||
(lambda (m)
|
||||
(display " " out) (write m out) (newline out))
|
||||
|
@ -303,7 +303,7 @@
|
|||
(lambda (a b)
|
||||
(string<? (write-to-string a) (write-to-string b))))))
|
||||
(else
|
||||
(display "... none found.\n"))))))))))
|
||||
(display "... none found.\n" out))))))))))
|
||||
|
||||
(define (repl/eval rp expr-list)
|
||||
(let ((out (repl-out rp)))
|
||||
|
|
Loading…
Add table
Reference in a new issue