diff options
-rw-r--r-- | generic/tclIO.c | 1 | ||||
-rw-r--r-- | tests/io.test | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index 67c9c3f..0ba4098 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -12,7 +12,6 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#undef NDEBUG #include "tclInt.h" #include "tclIO.h" #include <assert.h> diff --git a/tests/io.test b/tests/io.test index d3f249c..376bae8 100644 --- a/tests/io.test +++ b/tests/io.test @@ -4753,7 +4753,7 @@ test io-35.18a {Tcl_Eof, eof char, cr write, crlf read} -body { close $f list $s $l $e [scan [string index $in end] %c] } -result {9 8 1 13} -test io-35.18b {Tcl_Eof, eof char, cr write, crlf read} -constraints knownBug -body { +test io-35.18b {Tcl_Eof, eof char, cr write, crlf read} -body { file delete $path(test1) set f [open $path(test1) w] fconfigure $f -translation cr -eofchar \x1a |