summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-07-01 18:28:52 -0300
committerJames Almer <jamrial@gmail.com>2015-07-05 19:02:48 -0300
commite43ea1cbb213def50083812936c6a3c8e28a7789 (patch)
tree79516e24fcf66061ff387627a25c3988f9ee156f
parentc0db6320a639db41802995501c9607407f0e8ed8 (diff)
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.pl2
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;