Arc Forumnew | comments | leaders | submitlogin
10 points by jgrahamc 5909 days ago | link | parent

Cool.

Am I right in saying that write always flushes stdout instead of the port it's passed?

(xdef 'write (lambda args (if (pair? args) (write (ac-denil (car args)) (if (pair? (cdr args)) (cadr args) (current-output-port)))) (flush-output) 'nil))



4 points by offby1 5909 days ago | link

I do believe you're right; I think I fixed that in the ac.scm available at git://git.nex-3.com/arc-wiki.git

-----

8 points by pg 5909 days ago | link

Oops, will fix.

-----