Change 16136 by pudge@pudge-mobile on 2002/04/24 18:09:37 Silly fix for the SC compiler's fixation with "comp" as a type
Affected files ... .... //depot/macperl/ext/Unicode/Normalize/Normalize.xs#2 edit Differences ... ==== //depot/macperl/ext/Unicode/Normalize/Normalize.xs#2 (text) ==== Index: perl/ext/Unicode/Normalize/Normalize.xs --- perl/ext/Unicode/Normalize/Normalize.xs.~1~ Wed Apr 24 12:15:11 2002 +++ perl/ext/Unicode/Normalize/Normalize.xs Wed Apr 24 12:15:11 2002 @@ -553,10 +553,10 @@ UV uv2 PROTOTYPE: $$ PREINIT: - UV comp; + UV composite; CODE: - comp = composite_uv(uv, uv2); - RETVAL = comp ? newSVuv(comp) : &PL_sv_undef; + composite = composite_uv(uv, uv2); + RETVAL = composite ? newSVuv(composite) : &PL_sv_undef; OUTPUT: RETVAL End of Patch.