[FFmpeg-cvslog] doc/texi2pod: fix @ref substitution rule, disallow "}" within the fields
Stefano Sabatini
git at videolan.org
Wed Aug 28 23:16:21 CEST 2013
ffmpeg | branch: release/1.1 | Stefano Sabatini <stefasab at gmail.com> | Thu Mar 7 01:43:39 2013 +0100| [b7a4b4c145eae1d070a313250e6f0f66e8519c2a] | committer: Timothy Gu
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 at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b7a4b4c145eae1d070a313250e6f0f66e8519c2a
---
doc/texi2pod.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index fc23c7b..610f349 100755
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -377,7 +377,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;
More information about the ffmpeg-cvslog
mailing list