summaryrefslogtreecommitdiff
path: root/doc/texi2pod.pl
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-25 09:02:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-25 09:02:57 +0100
commita8ad7e47fb59d386e8672e38305cbe94138dabd1 (patch)
tree0afd2042ac2f0602367ac6c65fae5785c88267b1 /doc/texi2pod.pl
parent3144440004941aa22ffea9933f5e5dfe826df654 (diff)
parent5ea14d48a82afa82a6131528c68b217aee2046bb (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: texi2pod: always declare the pod file as UTF-8 encoded Conflicts: doc/texi2pod.pl Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/texi2pod.pl')
-rw-r--r--[-rwxr-xr-x]doc/texi2pod.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index 8fabac6d9a..f972671937 100755..100644
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -329,6 +329,8 @@ $chapters{FOOTNOTES} .= "=back\n" if exists $chapters{FOOTNOTES};
unshift @chapters_sequence, "NAME";
for $chapter (@chapters_sequence) {
+ # always use utf8
+ print "=encoding utf8\n";
if (exists $chapters{$chapter}) {
$head = uc($chapter);
print "=head1 $head\n\n";