[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]



	In lisp 1877 on Speech-Twenex:
	  (setq foo (open '|foo.bar| '(out ascii)))
	    ==> #FILE-OUT|<Jis>foo.bar.1|-64772
	  (princ '|This is a test| foo)
	    ==> T
	  (terpri foo)
	    ==> NIL
	  (force-output foo)
	    ==> T
	  (close foo)
	    ==> T

Foo Bar now contains:

This is a test
This is a test

Thats right, the output is done twice, once at the force-output,
and once during the close, looks like force-output isn't flushing
the output-buffer.
		-Jeff