[FFmpeg-cvslog] doc/texi2pod: fix an unescaped left brace
James Almer
git at videolan.org
Mon Jul 6 00:05:15 CEST 2015
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed Jul 1 18:28:52 2015 -0300| [e43ea1cbb213def50083812936c6a3c8e28a7789] | committer: James Almer
doc/texi2pod: fix an unescaped left brace
This silences some deprecation warnings
Reviewed-by: Michael Niedermayer <michaelni at gmx.at>
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e43ea1cbb213def50083812936c6a3c8e28a7789
---
doc/texi2pod.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
index e1ff6b4..9a9b34f 100644
--- a/doc/texi2pod.pl
+++ b/doc/texi2pod.pl
@@ -384,7 +384,7 @@ sub postprocess
# @* is also impossible in .pod; we discard it and any newline that
# follows it. Similarly, our macro @gol must be discarded.
- s/\@anchor{(?:[^\}]*)\}//g;
+ s/\@anchor\{(?:[^\}]*)\}//g;
s/\(?\@xref\{(?:[^\}]*)\}(?:[^.<]|(?:<[^<>]*>))*\.\)?//g;
s/\s+\(\@pxref\{(?:[^\}]*)\}\)//g;
s/;\s+\@pxref\{(?:[^\}]*)\}//g;
More information about the ffmpeg-cvslog
mailing list