diff options
author | James Almer <jamrial@gmail.com> | 2015-07-01 18:28:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-07-05 19:02:48 -0300 |
commit | e43ea1cbb213def50083812936c6a3c8e28a7789 (patch) | |
tree | 79516e24fcf66061ff387627a25c3988f9ee156f | |
parent | c0db6320a639db41802995501c9607407f0e8ed8 (diff) | |
download | ffmpeg-e43ea1cbb213def50083812936c6a3c8e28a7789.tar.gz |
doc/texi2pod: fix an unescaped left brace
This silences some deprecation warnings
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | doc/texi2pod.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl index e1ff6b46d4..9a9b34fc15 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; |