[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: BUG-LISP at MIT-MC
- From: Jeffrey I. Schiller <JIS at MIT-MC>
- Date: Sat, 15 Dec 79 07:31:00 GMT
- Original-date: 15 December 1979 02:31-EST
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