diff options
author | hackademix | 2018-08-02 14:40:44 +0200 |
---|---|---|
committer | hackademix | 2018-08-02 14:40:44 +0200 |
commit | 5e1a1782132e9a7c2e01a25eefbf7bce4d805c0d (patch) | |
tree | d305a27d93685146f57ab41987216844d8798a3f /TLD | |
parent | 48420eba033b09b883722afc485f841abc3af757 (diff) | |
download | noscript-5e1a1782132e9a7c2e01a25eefbf7bce4d805c0d.tar.gz noscript-5e1a1782132e9a7c2e01a25eefbf7bce4d805c0d.tar.xz noscript-5e1a1782132e9a7c2e01a25eefbf7bce4d805c0d.zip |
Prevent build-time warnings when importing some non-ASCII TLDs.
Diffstat (limited to 'TLD')
-rw-r--r-- | TLD/generate.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/TLD/generate.pl b/TLD/generate.pl index 472ca26..3a96497 100644 --- a/TLD/generate.pl +++ b/TLD/generate.pl @@ -1,5 +1,6 @@ #!/usr/bin/perl -w # use strict; +use utf8; use open ':utf8'; use Regexp::Assemble; $dat="public_suffix_list.dat"; |