[FFmpeg-cvslog] support @heading, @subheading, @subsubheading, and @subsubsection in

Justin Ruggles git at videolan.org
Sat Mar 26 03:10:00 CET 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Thu Mar 24 18:39:19 2011 -0400| [7f0e747b8c2f732ea40c4cc072fe5a3c25ec3799] | committer: Justin Ruggles

support @heading, @subheading, @subsubheading, and @subsubsection in
texi2pod.pl

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f0e747b8c2f732ea40c4cc072fe5a3c25ec3799
---

 doc/texi2pod.pl |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index aa3273e..84c36ff 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -231,10 +231,12 @@ while(<$inf>) {
 
     # Single line command handlers.
 
-    /^\@(?:section|unnumbered|unnumberedsec|center)\s+(.+)$/
+    /^\@(?:section|unnumbered|unnumberedsec|center|heading)\s+(.+)$/
         and $_ = "\n=head2 $1\n";
-    /^\@subsection\s+(.+)$/
+    /^\@(?:subsection|subheading)\s+(.+)$/
         and $_ = "\n=head3 $1\n";
+    /^\@(?:subsubsection|subsubheading)\s+(.+)$/
+        and $_ = "\n=head4 $1\n";
 
     # Block command handlers:
     /^\@itemize\s*(\@[a-z]+|\*|-)?/ and do {




More information about the ffmpeg-cvslog mailing list