summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-02-16 10:29:43 -0700
committerKarl Williamson <public@khwilliamson.com>2014-02-16 22:47:10 -0700
commit0334097d5ecdb8506c1fc85a54a43b1fa5b84bf4 (patch)
treec228a1be7d1a7686acd0d0cb9a84865b9e1ce7b3
parentedf4dbd293952ddabcfb2386e6e113c9aa4fadd5 (diff)
downloadperl-0334097d5ecdb8506c1fc85a54a43b1fa5b84bf4.tar.gz
sv.h: Add comment
There was recent confusion about this.
-rw-r--r--sv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sv.h b/sv.h
index bfb92d1b73..715b12447f 100644
--- a/sv.h
+++ b/sv.h
@@ -1703,6 +1703,7 @@ Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
(SvPOK_nog(sv) \
? SvPVX(sv) : sv_2pv_flags(sv, 0, SV_GMAGIC))
+/* "_nomg" in these defines means no mg_get() */
#define SvPV_nomg_nolen(sv) \
(SvPOK_nog(sv) \
? SvPVX(sv) : sv_2pv_flags(sv, 0, 0))