summaryrefslogtreecommitdiff
path: root/dist/Storable
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-07-30 16:17:59 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-07-30 23:24:24 -0700
commita137b8e55003972a0592a0447c134e64d67d3423 (patch)
tree83d2be9afb4301779ab866d980ce8b83396900fe /dist/Storable
parentb846e6a637ab20092fb1d9bc4bb317f92efaf0f0 (diff)
downloadperl-a137b8e55003972a0592a0447c134e64d67d3423.tar.gz
Storable.xs: Add comments to store_scalar concerning utf8
Diffstat (limited to 'dist/Storable')
-rw-r--r--dist/Storable/Storable.xs1
1 files changed, 1 insertions, 0 deletions
diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs
index 3975ac9cc1..65428ad772 100644
--- a/dist/Storable/Storable.xs
+++ b/dist/Storable/Storable.xs
@@ -1938,6 +1938,7 @@ static int store_ref(pTHX_ stcxt_t *cxt, SV *sv)
* Store a scalar.
*
* Layout is SX_LSCALAR <length> <data>, SX_SCALAR <length> <data> or SX_UNDEF.
+ * SX_LUTF8STR and SX_UTF8STR are used for UTF-8 strings.
* The <data> section is omitted if <length> is 0.
*
* If integer or double, the layout is SX_INTEGER <data> or SX_DOUBLE <data>.