diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-10 16:35:55 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-10 16:35:55 +0000 |
commit | b178108dc470b74242476037c9116c4f327f151d (patch) | |
tree | 374fdc551925d9d6164d4badcb1ab18739aa84f1 /op.c | |
parent | ba9a69eb5c6ef856a4e5dc1fa901a88f4e13b198 (diff) | |
download | perl-b178108dc470b74242476037c9116c4f327f151d.tar.gz |
Implement :std subpragma of the open pragma
that makes the standard filehandles to talk in
encodings. This change set off a weird warning
from op.c, though: disabled it now until someone
who knows what it is about comes along.
p4raw-id: //depot/perl@15146
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -927,7 +927,9 @@ S_cop_free(pTHX_ COP* cop) #ifdef USE_ITHREADS STRLEN len; char *s = SvPV(cop->cop_io,len); - Perl_warn(aTHX_ "io='%.*s'",(int) len,s); +#if 0 + Perl_warn(aTHX_ "io='%.*s'",(int) len,s); /* ??? --jhi */ +#endif #else SvREFCNT_dec(cop->cop_io); #endif |