diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-07 01:43:39 +0100 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2013-08-27 09:02:59 -0700 |
commit | bdeb7b6176e8f420f56e087f7a35d9e95dd7dea0 (patch) | |
tree | f70913948748afddf1db2020c620bf7ebf134d50 | |
parent | 7231c30bff7eab8778c615c6b0c8df8d72593e36 (diff) | |
download | ffmpeg-bdeb7b6176e8f420f56e087f7a35d9e95dd7dea0.tar.gz |
doc/texi2pod: fix @ref substitution rule, disallow "}" within the fields
Fix potential spurious substitution.
(cherry picked from commit 9167db3829f360f241255d4240ba6b7135ab4111)
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 8e09c09125..20ca764a1a 100755 --- a/doc/texi2pod.pl +++ b/doc/texi2pod.pl @@ -372,7 +372,7 @@ sub postprocess s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g; s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g; s/;\s+\@pxref\{(?:[^\}]*)\}//g; - s/\@ref\{(?:[^,]*,)(?:[^,]*,)([^,\}]*).*\}/$1/g; + s/\@ref\{(?:[^,\}]*,)(?:[^,\}]*,)([^,\}]*).*\}/$1/g; s/\@ref\{([^\}]*)\}/$1/g; s/\@noindent\s*//g; s/\@refill//g; |