diff options
author | dos-reis <gdr@axiomatics.org> | 2012-06-07 04:06:17 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2012-06-07 04:06:17 +0000 |
commit | c71819100f933bffb4a6bacdb5416db45b47a1c0 (patch) | |
tree | f13339e5fdf9d5127fbbe8c94ad10e1c8f028d7a | |
parent | d03a3c6cb297be5f5b7726c2f346075d41faad1d (diff) | |
download | open-axiom-c71819100f933bffb4a6bacdb5416db45b47a1c0.tar.gz |
fix thinko
-rw-r--r-- | src/interp/io.boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/io.boot b/src/interp/io.boot index 006781ac..bb93e42b 100644 --- a/src/interp/io.boot +++ b/src/interp/io.boot @@ -160,7 +160,7 @@ structure %Reader == Record(ins: %InputStream,est: %OutputStream, lines: %List %String,sline: %Line) with readerInput == (.ins) - readerError == (.ost) -- error output stream + readerError == (.est) -- error output stream readerPendingLines == (.lines) readerSourceLine == (.sline) -- current input line |