mirror of git://gcc.gnu.org/git/gcc.git
texi2pod.pl: keep references of the form @ref{...}, print them bold.
2004-08-26 Matthias Klose <doko@debian.org> * texi2pod.pl: keep references of the form @ref{...}, print them bold. From-SVN: r86635
This commit is contained in:
parent
b77c7437d3
commit
df6e87bf75
|
@ -1,7 +1,11 @@
|
||||||
2003-08-26 Matthias Klose <doko@debian.org>
|
2004-08-26 Matthias Klose <doko@debian.org>
|
||||||
|
|
||||||
* test_summary: Include baseline used for libstdc++-v3
|
* texi2pod.pl: keep references of the form @ref{...}, print them bold.
|
||||||
abi check in test summary.
|
|
||||||
|
2004-08-26 Matthias Klose <doko@debian.org>
|
||||||
|
|
||||||
|
* test_summary: Include baseline used for libstdc++-v3 abi check
|
||||||
|
in test summary.
|
||||||
|
|
||||||
2004-08-25 Ben Elliston <bje@au.ibm.com>
|
2004-08-25 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
|
|
|
@ -349,6 +349,9 @@ sub postprocess
|
||||||
s/\@w\{([^\}]*)\}/S<$1>/g;
|
s/\@w\{([^\}]*)\}/S<$1>/g;
|
||||||
s/\@(?:dmn|math)\{([^\}]*)\}/$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.
|
# Cross references are thrown away, as are @noindent and @refill.
|
||||||
# (@noindent is impossible in .pod, and @refill is unnecessary.)
|
# (@noindent is impossible in .pod, and @refill is unnecessary.)
|
||||||
# @* is also impossible in .pod; we discard it and any newline that
|
# @* is also impossible in .pod; we discard it and any newline that
|
||||||
|
|
Loading…
Reference in New Issue