Change 23678 by [EMAIL PROTECTED] on 2004/12/24 08:57:56
Subject: Re: [patch perlapi doc] sv_magic
From: Stas Bekman <[EMAIL PROTECTED]>
Date: Thu, 23 Dec 2004 16:28:06 -0500
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/pod/perlapi.pod#196 edit
... //depot/perl/sv.c#771 edit
Differences ...
==== //depot/perl/pod/perlapi.pod#196 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#195~23644~ Mon Dec 13 09:26:46 2004
+++ perl/pod/perlapi.pod Fri Dec 24 00:57:56 2004
@@ -4303,6 +4303,9 @@
See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
handling of the C<name> and C<namlen> arguments.
+You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
+to add more than one instance of the same 'how'.
+
void sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
=for hackers
==== //depot/perl/sv.c#771 (text) ====
Index: perl/sv.c
--- perl/sv.c#770~23626~ Tue Dec 7 15:39:46 2004
+++ perl/sv.c Fri Dec 24 00:57:56 2004
@@ -5406,6 +5406,9 @@
See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
handling of the C<name> and C<namlen> arguments.
+You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
+to add more than one instance of the same 'how'.
+
=cut
*/
End of Patch.