Skip to content
Snippets Groups Projects
Commit 86a75ae4 authored by Gerhard Gonter's avatar Gerhard Gonter :speech_balloon:
Browse files

added binmode :utf8 for filelist and stdout

parent d8436404
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,7 @@ sub read_flist
print __LINE__, " could not open '$fnm'!\n";
return -1;
}
binmode (FI, ':utf8'); # maybe we need a flag for that?
my @files;
while (<FI>)
......
......@@ -65,6 +65,10 @@ use TA::ObjReg;
use md5cat;
use Util::ts qw(ts_ISO);
binmode( STDOUT, ':utf8' ); autoflush STDOUT 1;
binmode( STDERR, ':utf8' ); autoflush STDERR 1;
binmode( STDIN, ':utf8' );
my $project;
my $store;
my $refresh_fileinfo= 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment