diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-19 20:34:42 +0100 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2013-08-27 09:06:37 -0700 |
commit | 23eb5a026980c52d16429bbf2e92d1786f64efb9 (patch) | |
tree | 1b610e8365b976822d3033b10d13d2ac9e887978 | |
parent | cf377add098e2c1bf652ffb09f6dd1a692315c20 (diff) | |
download | ffmpeg-23eb5a026980c52d16429bbf2e92d1786f64efb9.tar.gz |
doc/texi2pod.pl: skip printing chapter names if they are disabled
(cherry picked from commit c838701ce4515bd51f7827be0b20f256ba5c69f3)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rwxr-xr-x | doc/texi2pod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl index 697576c185..610f349afb 100755 --- a/doc/texi2pod.pl +++ b/doc/texi2pod.pl @@ -121,7 +121,7 @@ INF: while(<$inf>) { $chapters{$chapter_name} .= postprocess($chapter) if ($chapter_name); # start new chapter - $chapter_name = $1, push (@chapters_sequence, $chapter_name); + $chapter_name = $1, push (@chapters_sequence, $chapter_name) unless $skipping; $chapters{$chapter_name} = "" unless exists $chapters{$chapter_name}; $chapter = ""; $output = 1; |