Re: Tcl, unicode, transcoding strings ... almost.

2005-03-31 Thread Leopold Toetsch
William Coleda <[EMAIL PROTECTED]> wrote: > (whoops) > I just added octal and hex escapes to my local copy of the Tcl parser. > I was working on unicode when I noticed that not all of the transcodes > are done yet. Yes, that's true. Much more work is needed still. > This does not: > $S0 = asc

Tcl, unicode, transcoding strings ... almost.

2005-03-31 Thread William Coleda
(whoops) I just added octal and hex escapes to my local copy of the Tcl parser. I was working on unicode when I noticed that not all of the transcodes are done yet. This works: $S0 = unicode:"" $S1 = chr 0x30b3 $S0 .= $S1 print $S0 print "\n" This does not: $S0 = ascii:"" $S1 = chr 0x30b3

Tcl, unicode, transcoding strings.

2005-03-31 Thread William Coleda
I just added octal and hex escapes to my local copy of the Tcl parser. I was working on unicode when I noticed that not all of the transcodes are done yet. This works: