This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34c3137
)
Fix signature of sv_unmagic in perlguts.pod
author
Florian Ragwitz
<rafl@debian.org>
Thu, 25 Nov 2010 01:43:27 +0000
(
02:43
+0100)
committer
Florian Ragwitz
<rafl@debian.org>
Thu, 25 Nov 2010 01:43:27 +0000
(
02:43
+0100)
pod/perlguts.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlguts.pod
b/pod/perlguts.pod
index
b56811c
..
00df255
100644
(file)
--- a/
pod/perlguts.pod
+++ b/
pod/perlguts.pod
@@
-958,7
+958,7
@@
This simply calls C<sv_magic> and coerces the C<gv> argument into an C<SV>.
To remove the magic from an SV, call the function sv_unmagic:
-
void
sv_unmagic(SV *sv, int type);
+
int
sv_unmagic(SV *sv, int type);
The C<type> argument should be equal to the C<how> value when the C<SV>
was initially made magical.