Change 16136: Silly fix for the SC compiler's fixation with "comp" as a type

[email protected] (Chris Nandor) Wed, 24 Apr 2002 15:22:34 -0400
Newsgroups perl.perl5.changes.mac
Message-ID <p05100314b8ecb668b3fc@[10.0.1.177]>
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.