diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-12-17 14:29:17 +0100 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2013-08-27 09:06:37 -0700 |
commit | ada4f4f715c45809c401b965ac0f9af83fb6b676 (patch) | |
tree | 6065bbfd400e91854c8195ca5301802e3732729b | |
parent | 7e017b9cbff148b3491ec919dbaeb37919672213 (diff) | |
download | ffmpeg-ada4f4f715c45809c401b965ac0f9af83fb6b676.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.
(cherry picked from commit 1f9855dbc1102e63fa7ce932d0edf0d545c89b09)
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 6702d7a542..bf333b891b 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)\{([^\},]*)\}/<B<$1>>/g; + s/\@(?:uref|url|email)\{([^\},]*),?[^\}]*\}/<B<$1>>/g; s/\@uref\{([^\},]*),([^\},]*)\}/$2 (C<$1>)/g; s/\@uref\{([^\},]*),([^\},]*),([^\},]*)\}/$3/g; |