diff options
author | Doug Bell <madcityzen@gmail.com> | 2014-09-03 23:29:48 -0500 |
---|---|---|
committer | Doug Bell <madcityzen@gmail.com> | 2014-09-03 23:29:48 -0500 |
commit | c0c2ae0bf1e88ec807ad9868c8a3f07388a25511 (patch) | |
tree | 5a118ac8f0519a8fccb579700e88165615b16d02 /runtests.pl | |
parent | e47d698c2cf1d24606bd2f708feed0c23a80ce79 (diff) |
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.
Diffstat (limited to 'runtests.pl')
-rw-r--r-- | runtests.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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; |