Will Coleda (via RT) wrote:
causes a segfault in the substr opcode (from tcl's lib/tclconst.pir), and forces a few tcl-unicode escape tests into TODOs.A short PIR test that is equivalent: .sub main @MAIN $S0 = "\\u666" $I0 = 0x666 $S1 = chr $I0 # works, but substr doesn't like this string. substr $S0, 0, 5, $S1 .end
Fixed - r8805 Thanks for testing and providing the test, leo