projects
/
perl.git
/ commitdiff
free
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
122a5be
)
Correct sv_catpv_flags docs
author
Father Chrysostomos <sprout@cpan.org>
Sat, 19 Nov 2011 14:36:39 +0000 (06:36 -0800)
committer
Father Chrysostomos <sprout@cpan.org>
Sat, 19 Nov 2011 14:36:39 +0000 (06:36 -0800)
SV_SMAGIC, not SV_GMAGIC.
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
7a1a6b9
..
330937c
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-5103,8
+5103,8
@@
Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
Concatenates the string onto the end of the string which is in the SV.
If the SV has the UTF-8 status set, then the bytes appended should
-be valid UTF-8. If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get>
-on the SVs if appropriate, else not.
+be valid UTF-8. If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
+on the modified SV if appropriate.
=cut
*/