]> sourceware.org Git - newlib-cygwin.git/commit
texi2pod.pl: import support for @t{...} from gcc
authorSimon Marchi <simon.marchi@polymtl.ca>
Wed, 15 Jan 2020 17:58:08 +0000 (12:58 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 11 Nov 2021 01:14:00 +0000 (20:14 -0500)
commit957f0a864a624a98d3fa220ffb4b7030cd261505
tree8302732c196b6353a9b63ada406b6209837d5c10
parentbc70b16620943b5120acf0fddbe2b37277650eb9
texi2pod.pl: import support for @t{...} from gcc

GDB's man page source (in gdb.texinfo) contains:

    @t{++}

The @t{...} part is supposed to display the wrapped text with a
fixed-width font.  The texi2pod.pl script currently doesn't handle
@t{...}, so it appears as-is in the man page:

    You can use GDB to debug programs written in C, C@t{++}, Fortran and Modula-2.

gcc's version of texi2pod.pl (at contrib/texi2pod.pl in gcc's repo)
replaces @t{...} with the wrapped text as-is, which I think is an
acceptable behavior.  The fixed-width font distinction is not really
important for a man page, where the text will be displayed with whatever
font the user is using.

Import the line that does that from gcc's version.

I have verified that there is no other, unwanted change in man pages
generated in binutils' and GDB's doc, with this patch applied.

etc/ChangeLog:

* texi2pod.pl: Handle @t{...} tags.
etc/ChangeLog
etc/texi2pod.pl
This page took 0.030374 seconds and 5 git commands to generate.