fix utf8ness in ${"string"}
authorDavid Mitchell <davem@iabyn.com>
Tue, 25 Dec 2012 21:44:58 +0000 (21:44 +0000)
committerDavid Mitchell <davem@iabyn.com>
Tue, 25 Dec 2012 21:49:11 +0000 (21:49 +0000)
commit8d40577bdbdfa85ed3293f84bf26a313b1b92f55
tree910120921af49845b3278520d6e3a1f61b9b8e2f
parent97a9508cb0d6f106988a45d6c2d1b8b861ca07bc
fix utf8ness in ${"string"}

Commit 28123549 introduced some consistency checks which started warning
against code like:

    $c = chr 163;
    $x = $$c;

This was caused by a symbol table lookup of a value which isn't utf8
encoded, but which was being treated as utf8 encoded.
gv.c