Fix redundant formatting tags

This commit is contained in:
Michael Kerrisk 2007-10-03 06:40:03 +00:00
parent fbbfa7ce8a
commit b9d200cedb
3 changed files with 11 additions and 11 deletions

View File

@ -180,7 +180,7 @@ function.
The primary use of the The primary use of the
.BR freopen () .BR freopen ()
function is to change the file associated with a standard text stream function is to change the file associated with a standard text stream
.IR "" ( stderr ", " stdin ", or " stdout ). .RI ( stderr ", " stdin ", or " stdout ).
.SH "RETURN VALUE" .SH "RETURN VALUE"
Upon successful completion Upon successful completion
.BR fopen (), .BR fopen (),

View File

@ -295,7 +295,7 @@ flags both appear, the
.B \&0 .B \&0
flag is ignored. flag is ignored.
If a precision is given with a numeric conversion If a precision is given with a numeric conversion
.BR "" ( d , .RB ( d ,
.BR i , .BR i ,
.BR o , .BR o ,
.BR u , .BR u ,
@ -337,7 +337,7 @@ The SUSv2 specifies one further flag character.
.TP .TP
.B ' .B '
For decimal conversion For decimal conversion
.BR "" ( i , .RB ( i ,
.BR d , .BR d ,
.BR u , .BR u ,
.BR f , .BR f ,
@ -356,7 +356,7 @@ glibc 2.2 adds one further flag character.
.TP .TP
.B I .B I
For decimal integer conversion For decimal integer conversion
.BR "" ( i , .RB ( i ,
.BR d , .BR d ,
.BR u ) .BR u )
the output uses the locale's alternative output digits, if any. the output uses the locale's alternative output digits, if any.
@ -570,11 +570,11 @@ When 0 is printed with an explicit precision 0, the output is empty.
The The
.I "unsigned int" .I "unsigned int"
argument is converted to unsigned octal argument is converted to unsigned octal
.BR "" ( o ), .RB ( o ),
unsigned decimal unsigned decimal
.BR "" ( u ), .RB ( u ),
or unsigned hexadecimal or unsigned hexadecimal
.BR "" ( x .RB ( x
and and
.BR X ) .BR X )
notation. notation.
@ -598,7 +598,7 @@ The
.I double .I double
argument is rounded and converted in the style argument is rounded and converted in the style
.if \w'\*(Pm'=0 .ds Pm \(+- .if \w'\*(Pm'=0 .ds Pm \(+-
.BR "" [\-]d \&. ddd e \\*(Pmdd .RB [\-]d \&. ddd e \\*(Pmdd
where there is one digit before the decimal-point character and the number where there is one digit before the decimal-point character and the number
of digits after it is equal to the precision; if the precision is missing, of digits after it is equal to the precision; if the precision is missing,
it is taken as 6; if the precision is zero, no decimal-point character it is taken as 6; if the precision is zero, no decimal-point character
@ -617,7 +617,7 @@ digits; if the value is zero, the exponent is 00.
The The
.I double .I double
argument is rounded and converted to decimal notation in the style argument is rounded and converted to decimal notation in the style
.BR "" [\-]ddd \&. ddd, .RB [\-]ddd \&. ddd,
where the number of digits after the decimal-point character is equal to where the number of digits after the decimal-point character is equal to
the precision specification. the precision specification.
If the precision is missing, it is taken as If the precision is missing, it is taken as
@ -667,7 +667,7 @@ conversion, the
.I double .I double
argument is converted to hexadecimal notation (using the letters abcdef) argument is converted to hexadecimal notation (using the letters abcdef)
in the style in the style
.BR "" [\-] 0x h \&. hhhh p \\*(Pmd; .RB [\-] 0x h \&. hhhh p \\*(Pmd;
for for
.B A .B A
conversion the prefix conversion the prefix

View File

@ -46,7 +46,7 @@ stdarg, va_start, va_arg, va_end, va_copy \- variable argument lists
.sp .sp
.BI "void va_start(va_list " ap ", " last ); .BI "void va_start(va_list " ap ", " last );
.br .br
.BI "" type " va_arg(va_list " ap ", " type ); .IB type " va_arg(va_list " ap ", " type );
.br .br
.BI "void va_end(va_list " ap ); .BI "void va_end(va_list " ap );
.br .br