From: Father Chrysostomos Date: Wed, 5 Dec 2012 14:09:42 +0000 (-0800) Subject: sv.c: Correct newSVpvn_share docs X-Git-Tag: upstream/5.20.0~4595 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd047b2c46c84dde15e7333abb2ecb4a248079d0;p=platform%2Fupstream%2Fperl.git sv.c: Correct newSVpvn_share docs something I overlooked --- diff --git a/sv.c b/sv.c index 72d41ca..8bc60db 100644 --- a/sv.c +++ b/sv.c @@ -8613,7 +8613,8 @@ Perl_newSVhek(pTHX_ const HEK *const hek) Creates a new SV with its SvPVX_const pointing to a shared string in the string table. If the string does not already exist in the table, it is -created first. Turns on READONLY and FAKE. If the C parameter +created first. Turns on the SvIsCOW flag (or READONLY +and FAKE in 5.16 and earlier). If the C parameter is non-zero, that value is used; otherwise the hash is computed. The string's hash can later be retrieved from the SV with the C macro. The idea here is