aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-11-11 18:44:10 +0100
committerTimothy Gu <timothygu99@gmail.com>2013-08-27 09:02:59 -0700
commit6469c199b4c5f1446becc9974535e68773e391ae (patch)
tree78cf0926f57f9727454d3bf3ff5d81fbcfb3cc9b
parentf00e882a1f5e6a0a72f5cd8f4dd3c38d743062c9 (diff)
downloadffmpeg-6469c199b4c5f1446becc9974535e68773e391ae.tar.gz
doc/texi2pod: recognize @table @command.
(cherry picked from commit ee2d6fbc92e6d55dda319fa56234c5be9a476728) Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rwxr-xr-xdoc/texi2pod.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index a057651175..d20fac6bf6 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -268,7 +268,7 @@ INF: while(<$inf>) {
push @icstack, $ic;
$endw = $1;
$ic = $2;
- $ic =~ s/\@(?:samp|strong|key|gcctabopt|option|env)/B/;
+ $ic =~ s/\@(?:samp|strong|key|gcctabopt|option|env|command)/B/;
$ic =~ s/\@(?:code|kbd)/C/;
$ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
$ic =~ s/\@(?:file)/F/;