From 388747c44481439d1fa4614a804cbaa75441db35 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 12 Dec 2017 17:48:01 +0100 Subject: [PATCH] unicode: avoid undetected use of lexical_topic Feature is buggy since its "removal" in perl v5.24, which is apparently ignored when combined with "use utf8" for some reason (Perl bug). --- unicode.plp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unicode.plp b/unicode.plp index a3273e3..7949edc 100644 --- a/unicode.plp +++ b/unicode.plp @@ -131,7 +131,7 @@ $_ and m{/*+(.+)} and @config = split /[ ]/, $1 for $Request, $get{q}; my $tables = do 'unicode-table.inc.pl' or die $@ || $!; $glyphs->print(map { - my $_ = /(.*)\?(.*)/ ? ($verbose ? $2 : $1) : $_; + $_ = /(.*)\?(.*)/ ? ($verbose ? $2 : $1) : $_; if (!$_) { (); } -- 2.30.0