about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-11-03 02:02:04 +0000
committerEric Wong <e@80x24.org>2019-11-03 02:03:32 +0000
commit8edf9493a92f53a5135b9d36f5e913b46d6486c8 (patch)
tree6db72288a529ee4ebe63eab833684d87a73ec502 /Documentation
parentf5137830cd1f62bfc6039f5b84b1b2bc088f3b60 (diff)
downloadpublic-inbox-8edf9493a92f53a5135b9d36f5e913b46d6486c8.tar.gz
We'll have non-7-bit ASCII in the 1.2.0 release notes.
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/mknews.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/mknews.perl b/Documentation/mknews.perl
index 509da3b1..e78c1cb8 100755
--- a/Documentation/mknews.perl
+++ b/Documentation/mknews.perl
@@ -26,7 +26,7 @@ my $mtime = msg_datestamp($mime_latest->header_obj);
 my $tmp = "$dst+";
 my $out;
 if ($dst eq 'NEWS') {
-        open $out, '>', $tmp or die;
+        open $out, '>:encoding(utf8)', $tmp or die;
         mime2txt($out, $mime_latest);
         for my $v (@releases) {
                 print $out "\n" or die;