From: Matthias Klose Date: Thu, 26 Aug 2004 21:26:22 +0000 (+0000) Subject: texi2pod.pl: keep references of the form @ref{...}, print them bold. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df6e87bf752c78351c8a40c5c824f312e2199621;p=gcc.git 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: r86635 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index c03da28807f..e481dad2253 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,7 +1,11 @@ -2003-08-26 Matthias Klose +2004-08-26 Matthias Klose - * test_summary: Include baseline used for libstdc++-v3 - abi check in test summary. + * texi2pod.pl: keep references of the form @ref{...}, print them bold. + +2004-08-26 Matthias Klose + + * test_summary: Include baseline used for libstdc++-v3 abi check + in test summary. 2004-08-25 Ben Elliston diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index 9d4bb541903..480f26a212c 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -349,6 +349,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