[FFmpeg-devel] [PATCH] texi2pod: fix an unescaped left brace

James Almer jamrial at gmail.com
Wed Jul 1 23:32:13 CEST 2015


This silences some deprecation warnings

Signed-off-by: James Almer <jamrial at gmail.com>
---
 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;
-- 
2.4.5



More information about the ffmpeg-devel mailing list