diff -se shows these as different
authorNick Ing-Simmons <nik@tiuk.ti.com>
Sun, 19 Nov 2000 20:01:16 +0000 (20:01 +0000)
committerNick Ing-Simmons <nik@tiuk.ti.com>
Sun, 19 Nov 2000 20:01:16 +0000 (20:01 +0000)
p4raw-id: //depot/perlio@7753

global.sym
pod/perlapi.pod

index 2143319..c5e527b 100644 (file)
@@ -461,6 +461,7 @@ Perl_unlock_condpair
 Perl_unsharepvn
 Perl_utf16_to_utf8
 Perl_utf16_to_utf8_reversed
+Perl_utf8_length
 Perl_utf8_distance
 Perl_utf8_hop
 Perl_utf8_to_bytes
index 061f403..7a93dea 100644 (file)
@@ -2368,19 +2368,19 @@ false, defined or undefined.  Does not handle 'get' magic.
 =for hackers
 Found in file sv.h
 
-=item SvTYPE
-
-Returns the type of the SV.  See C<svtype>.
+=item svtype
 
-       svtype  SvTYPE(SV* sv)
+An enum of flags for Perl types.  These are found in the file B<sv.h> 
+in the C<svtype> enum.  Test these flags with the C<SvTYPE> macro.
 
 =for hackers
 Found in file sv.h
 
-=item svtype
+=item SvTYPE
 
-An enum of flags for Perl types.  These are found in the file B<sv.h> 
-in the C<svtype> enum.  Test these flags with the C<SvTYPE> macro.
+Returns the type of the SV.  See C<svtype>.
+
+       svtype  SvTYPE(SV* sv)
 
 =for hackers
 Found in file sv.h