X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FLog.pm;h=2ae7af7b919705b1e859f55cfc686a0741ab980c;hb=cf8a3212a0f8053e26fee7bab3a214d8d1dd1e58;hp=89b14d5d04d90642761dbe9ae3c8e7561ff50179;hpb=206de410efd7d1d14692024275ff812b0e0dcbd4;p=debbugs.git diff --git a/Debbugs/Log.pm b/Debbugs/Log.pm index 89b14d5..2ae7af7 100644 --- a/Debbugs/Log.pm +++ b/Debbugs/Log.pm @@ -51,6 +51,11 @@ The Debbugs::Log module provides a convenient way for scripts to read and write the .log files used by debbugs to store the complete textual records of all bug transactions. +Debbugs::Log does not decode utf8 into perl's internal encoding or +encode into utf8 from perl's internal encoding. For html records and +all recips, this should probably be done. For other records, this should +not be needed. + =head2 The .log File Format .log files consist of a sequence of records, of one of the following four @@ -201,7 +206,6 @@ sub new die "Unable to open bug log $bug_log for reading: $!"; } - binmode($self->{logfh},':utf8'); $self->{state} = 'kill-init'; $self->{linenum} = 0; return $self;