"use encoding" was removed (deprecated since 5.18), and set STDOUT to utf8 so that it does not warn about wide characters. PR: 226817 Sponsored by: Absolight
12 lines
351 B
Perl
12 lines
351 B
Perl
--- bin/verb_reverse.pl.orig 2014-09-18 02:46:59 UTC
|
|
+++ bin/verb_reverse.pl
|
|
@@ -9,8 +9,8 @@
|
|
use strict;
|
|
use locale;
|
|
use utf8;
|
|
-use encoding 'utf8';
|
|
|
|
+binmode(STDOUT, ":utf8");
|
|
|
|
my $UK_CAP ="'АБВГҐДЕЄЖЗИІЇЙКЛМНОПРСТУФХЦЧШЩЬЮЯ";
|
|
my $UK_LOW ="'абвгґдеєжзиіїйклмнопрстуфхцчшщьюя";
|