Alexandre Julliard : tools: Ensure that everything is stored in UTF-8 in the ANNOUNCE file.
Module: wine Branch: master Commit: b6a091a2b189b9974a21d7457dc9915e12f90919 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b6a091a2b189b9974a21d7457d... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Fri May 27 23:18:05 2016 +0900 tools: Ensure that everything is stored in UTF-8 in the ANNOUNCE file. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tools/make_announce | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make_announce b/tools/make_announce index fedbc37..c65f900 100755 --- a/tools/make_announce +++ b/tools/make_announce @@ -25,7 +25,7 @@ use strict; use locale; use POSIX; use Text::CSV::Encoded; -binmode STDOUT, ':utf8'; +use open ':encoding(utf8)'; sub unescape($) {
participants (1)
-
Alexandre Julliard