summaryrefslogtreecommitdiff
path: root/dist/Data-Dumper
diff options
context:
space:
mode:
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r--dist/Data-Dumper/Dumper.xs5
1 files changed, 4 insertions, 1 deletions
diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs
index 0c1b98773e..6d73beca30 100644
--- a/dist/Data-Dumper/Dumper.xs
+++ b/dist/Data-Dumper/Dumper.xs
@@ -605,7 +605,10 @@ dump_regexp(pTHX_ SV *retval, SV *val)
}
else {
/* If there was a \, we have copied it already, so all that is
- * left to do here is the \x{...} escaping. */
+ * left to do here is the \x{...} escaping.
+ *
+ * Since this is a pattern, presumably created by perl, we can
+ * assume it is well-formed */
k = utf8_to_uvchr_buf(p, rend, NULL);
sv_catpvf(retval, "\\x{%" UVxf "}", k);
p += UTF8SKIP(p);