From: <ai...@us...> - 2014-02-23 20:54:06
|
Revision: 13017 http://sourceforge.net/p/plplot/code/13017 Author: airwin Date: 2014-02-23 20:54:04 +0000 (Sun, 23 Feb 2014) Log Message: ----------- Quiet warnings about wide characters (due to UTF-8) in output. This change does not change the actual results for api.xml that includes UTF-8. Modified Paths: -------------- trunk/doc/docbook/bin/api2swigdoc.pl Modified: trunk/doc/docbook/bin/api2swigdoc.pl =================================================================== --- trunk/doc/docbook/bin/api2swigdoc.pl 2014-02-23 18:50:11 UTC (rev 13016) +++ trunk/doc/docbook/bin/api2swigdoc.pl 2014-02-23 20:54:04 UTC (rev 13017) @@ -172,6 +172,9 @@ $titles = ""; open (MAN, "> $ARGV[2]"); +# Suppress warnings about UTF-8 in MAN. +binmode MAN, ':utf8'; + print MAN "// This file is generated by doc/docbook/src/api2swigdoc.pl from\n"; print MAN "// doc/docbook/src/api.xml. Do not modify by hand since this file\n"; print MAN "// will be overwritten. Edit doc/docbook/src/api.xml instead.\n\n"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |