From 6247ead0fba38099d381dcb4317ef3b243f1296a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 9 Jan 2011 15:28:29 -0700 Subject: [PATCH] op.c: Remove unnecessary flag This flag no longer does anything --- op.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/op.c b/op.c index 018ea43..236d4fe 100644 --- a/op.c +++ b/op.c @@ -3527,8 +3527,7 @@ S_pmtrans(pTHX_ OP *o, OP *expr, OP *repl) U8 range_mark = UTF_TO_NATIVE(0xff); sv_catpvn(transv, (char *)&range_mark, 1); } - t = uvuni_to_utf8_flags(tmpbuf, 0x7fffffff, - UNICODE_ALLOW_SUPER); + t = uvuni_to_utf8(tmpbuf, 0x7fffffff); sv_catpvn(transv, (char*)tmpbuf, t - tmpbuf); t = (const U8*)SvPVX_const(transv); tlen = SvCUR(transv); -- 1.8.3.1