From f50263f70969bd3412ee4b2fd19d5dd09477e15f Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Thu, 26 Aug 2004 21:21:17 +0000 Subject: [PATCH] texi2pod.pl: keep references of the form @ref{...}, print them bold. 2004-08-26 Matthias Klose * texi2pod.pl: keep references of the form @ref{...}, print them bold. From-SVN: r86633 --- contrib/ChangeLog | 8 ++++++-- contrib/texi2pod.pl | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 82cfd05012ce..50d3f38ed8d3 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,7 +1,11 @@ +2004-08-26 Matthias Klose + + * texi2pod.pl: keep references of the form @ref{...}, print them bold. + 2003-08-26 Matthias Klose - * test_summary: Include baseline used for libstdc++-v3 - abi check in test summary. + * test_summary: Include baseline used for libstdc++-v3 abi check + in test summary. 2004-05-31 Release Manager diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index d38394588961..757227550763 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -345,6 +345,9 @@ sub postprocess s/\@w\{([^\}]*)\}/S<$1>/g; s/\@(?:dmn|math)\{([^\}]*)\}/$1/g; + # keep references of the form @ref{...}, print them bold + s/\@(?:ref)\{([^\}]*)\}/B<$1>/g; + # Cross references are thrown away, as are @noindent and @refill. # (@noindent is impossible in .pod, and @refill is unnecessary.) # @* is also impossible in .pod; we discard it and any newline that -- 2.47.2