summaryrefslogtreecommitdiffstats
path: root/doc/texi2pod.pl
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-12-17 14:29:17 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-12-18 00:06:35 +0100
commit1f9855dbc1102e63fa7ce932d0edf0d545c89b09 (patch)
tree533faa1884c1fc74d08eb1b271c70cd712a30d20 /doc/texi2pod.pl
parent9bba683578006ca7a17cb929f16eef58b68a3e08 (diff)
downloadffmpeg-streaming-1f9855dbc1102e63fa7ce932d0edf0d545c89b09.zip
ffmpeg-streaming-1f9855dbc1102e63fa7ce932d0edf0d545c89b09.tar.gz
doc/texi2pod: correctly handle @url commands in the form @url{URL,...}
Ignore the other arguments, which have not to be processed by the POD renderer.
Diffstat (limited to 'doc/texi2pod.pl')
-rwxr-xr-xdoc/texi2pod.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index 6702d7a..bf333b8 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -365,7 +365,7 @@ sub postprocess
# @uref can take one, two, or three arguments, with different
# semantics each time. @url and @email are just like @uref with
# one argument, for our purposes.
- s/\@(?:uref|url|email)\{([^\},]*)\}/&lt;B<$1>&gt;/g;
+ s/\@(?:uref|url|email)\{([^\},]*),?[^\}]*\}/&lt;B<$1>&gt;/g;
s/\@uref\{([^\},]*),([^\},]*)\}/$2 (C<$1>)/g;
s/\@uref\{([^\},]*),([^\},]*),([^\},]*)\}/$3/g;
OpenPOWER on IntegriCloud