ioformatcommon-lispio-buffering

Lisp format and force-output


I don't understand why this code behaves differently in different implementations:

(format t "asdf")
(setq var (read))

In CLISP it behaves as would be expected, with the prompt printed followed by the read, but in SBCL it reads, then outputs. I read a bit on the internet and changed it:

(format t "asdf")
(force-output t)
(setq var (read))

This, again, works fine in CLISP, but in SBCL it still reads, then outputs. I even tried separating it into another function:

(defun output (string)
   (format t string)
   (force-output t))
(output "asdf")
(setq var (read))

And it still reads, then outputs. Am I not using force-output correctly or is this just an idiosyncrasy of SBCL?


Solution

  • You need to use FINISH-OUTPUT.

    In systems with buffered output streams, some output remains in the output buffer until the output buffer is full (then it will be automatically written to the destination) or the output buffer is explicity emptied.

    Common Lisp has three functions for that:

    Also the T in FORCE-OUTPUT and FORMAT are unfortunately not the same.

    this should work:

    (format t "asdf")
    (finish-output nil)   ;  note the NIL
    (setq var (read))