Change 24728 by [EMAIL PROTECTED] on 2005/06/07 13:15:45
Fix apidoc for newSVhek
Affected files ...
... //depot/perl/pod/perlapi.pod#220 edit
... //depot/perl/sv.c#872 edit
Differences ...
==== //depot/perl/pod/perlapi.pod#220 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#219~24682~ Fri Jun 3 00:43:52 2005
+++ perl/pod/perlapi.pod Tue Jun 7 06:15:45 2005
@@ -2942,6 +2942,17 @@
=for hackers
Found in file sv.c
+=item newSVhek
+
+Creates a new SV from the hash key structure. It will generate scalars that
+point to the shared string table where possible. Returns a new (undefined)
+SV if the hek is NULL.
+
+ SV* newSVhek(const HEK *hek)
+
+=for hackers
+Found in file sv.c
+
=item newSViv
Creates a new SV and copies an integer into it. The reference count for the
==== //depot/perl/sv.c#872 (text) ====
Index: perl/sv.c
--- perl/sv.c#871~24722~ Tue Jun 7 05:03:56 2005
+++ perl/sv.c Tue Jun 7 06:15:45 2005
@@ -7606,7 +7606,7 @@
/*
-=for apidoc newSVpv_hek
+=for apidoc newSVhek
Creates a new SV from the hash key structure. It will generate scalars that
point to the shared string table where possible. Returns a new (undefined)
End of Patch.