summaryrefslogtreecommitdiff
path: root/doc/texi2pod.pl
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-02-24 20:22:13 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-02-24 23:36:09 +0100
commit5ea14d48a82afa82a6131528c68b217aee2046bb (patch)
tree331b680ca5821e0e6938eaf272919cafffdafd12 /doc/texi2pod.pl
parentc91488ab33679add25eeb8c0229dc0b8f6acb5a4 (diff)
texi2pod: always declare the pod file as UTF-8 encoded
Diffstat (limited to 'doc/texi2pod.pl')
-rwxr-xr-xdoc/texi2pod.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index fb4f7be2db..609568e16d 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -324,6 +324,8 @@ $sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES};
unshift @sects_sequence, "NAME";
for $sect (@sects_sequence) {
+ # always use utf8
+ print "=encoding utf8\n";
if(exists $sects{$sect}) {
$head = $sect;
$head =~ s/SEEALSO/SEE ALSO/;