Skip to content

Commit

Permalink
Applying Tino’s Unicode fix to all other perl scripts in the src/scri…
Browse files Browse the repository at this point in the history
…pts/ dir.
  • Loading branch information
snomos committed Apr 26, 2018
1 parent 927d60a commit 4a0939c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/scripts/smj2sje-num.pl
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/perl -w
use utf8 ;
use utf8;
use feature 'unicode_strings';
BEGIN {
$| = 1;
binmode(STDIN, ':encoding(UTF-8)');
binmode(STDOUT, ':encoding(UTF-8)');
}
use open qw( :encoding(UTF-8) :std );

while (<>)

Expand Down

0 comments on commit 4a0939c

Please sign in to comment.