From c0c2ae0bf1e88ec807ad9868c8a3f07388a25511 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Wed, 3 Sep 2014 23:29:48 -0500 Subject: perl wants "use utf8" when UTF-8 is in the source When there are literal UTF-8 characters in the source, "use utf8" will tell Perl to set the utf8 flag on strings. --- runtests.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/runtests.pl b/runtests.pl index 5facbe6..ce72931 100644 --- a/runtests.pl +++ b/runtests.pl @@ -1,6 +1,7 @@ #!/usr/bin/env perl use warnings; use strict; +use utf8; use Term::ANSIColor; use IO::Handle; use IPC::Open2; -- cgit v1.2.3