Change 16536 by jhi@alpha on 2002/05/10 14:42:10
Unused variables.
Affected files ...
.... //depot/perl/ext/Encode/Encode.xs#90 edit
Differences ...
==== //depot/perl/ext/Encode/Encode.xs#90 (text) ====
Index: perl/ext/Encode/Encode.xs
--- perl/ext/Encode/Encode.xs#89~16532~ Thu May 9 20:38:40 2002
+++ perl/ext/Encode/Encode.xs Fri May 10 07:42:10 2002
@@ -283,7 +283,7 @@
SV * obj
CODE:
{
- encode_t *enc = INT2PTR(encode_t *, SvIV(SvRV(obj)));
+ /* encode_t *enc = INT2PTR(encode_t *, SvIV(SvRV(obj))); */
ST(0) = &PL_sv_no;
XSRETURN(1);
}
@@ -293,7 +293,7 @@
SV * obj
CODE:
{
- encode_t *enc = INT2PTR(encode_t *, SvIV(SvRV(obj)));
+ /* encode_t *enc = INT2PTR(encode_t *, SvIV(SvRV(obj))); */
/* require_pv(PERLIO_FILENAME); */
eval_pv("require PerlIO::encoding", 0);
End of Patch.