Revision: 13024
http://sourceforge.net/p/plplot/code/13024
Author: airwin
Date: 2014-02-25 00:27:53 +0000 (Tue, 25 Feb 2014)
Log Message:
-----------
Suppress warnings about "wide" UTF-8 characters in man results.
Those characters display without issues using the man command,
but for some reason, there are display issues for the corresponding
nroff -man command. Of course, it is the official man results that
we want so the strange nroff results for UTF-8 characters should be
regarded as a curiosity until we can figure out the nroff options
to display those properly.
Modified Paths:
--------------
trunk/doc/docbook/bin/api2man.pl.in
Modified: trunk/doc/docbook/bin/api2man.pl.in
===================================================================
--- trunk/doc/docbook/bin/api2man.pl.in 2014-02-24 23:53:42 UTC (rev 13023)
+++ trunk/doc/docbook/bin/api2man.pl.in 2014-02-25 00:27:53 UTC (rev 13024)
@@ -202,7 +202,11 @@
}
}
}
+
open (MAN, "> $name.$manvol");
+ # Suppress warnings about UTF-8 in MAN.
+ binmode MAN, ':utf8';
+
print MAN $opening;
print MAN ".TH " . uc ($name) . ' 3plplot "' . $date . '" "" "PLplot API"' . "\n";
$titles .= "\n.TP\n$title";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|