Angus Leeming <[EMAIL PROTECTED]> writes:

| Andre Poenitz wrote:
| 
| > sigh
| > 
| > This is completely legal code.
| > 
| > I've committed a 'fix' nevertheless, just to shut up the compiler.
| 
| Incidentally, what is it really trying to do? Warn us that the 
| subscript is signed and so might be negative?
| 
| Actually, looking at the 'fix', if this stops the wrning then it is 
| indeed brain dead:
| 
| -       theCatcode['\\'] = catEscape;
| +       theCatcode[int('\\')] = catEscape;
|

except when somebody tries:

        theCatcode['å'] = catIgnore;

then the fun begins.... and you had a control char there Andre, did
you get rid of that? Use hex instead.

-- 
        Lgb

Reply via email to