mdoc(7) police: changed pure POSIX text; added missing markup bits.

This commit is contained in:
Ruslan Ermilov 2001-09-11 09:39:23 +00:00
parent 9cbf4a2152
commit 8fc5ce4d99
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83328
2 changed files with 12 additions and 8 deletions

View File

@ -149,10 +149,10 @@ or
function
returns the result of the conversion,
unless the value would underflow or overflow.
If no conversion could be performed, 0 shall be returned and
If no conversion could be performed, 0 is returned and
the global variable
.Va errno
will be
set to
is set to
.Er EINVAL .
If an underflow occurs,
.Fn strtol
@ -177,7 +177,9 @@ is set to
.Sh ERRORS
.Bl -tag -width Er
.It Bq Er EINVAL
The value of base is not supported or
The value of
.Fa base
is not supported or
no conversion could be performed.
.It Bq Er ERANGE
The given string was out of range; the value converted has been clamped.

View File

@ -164,15 +164,17 @@ In all cases,
.Va errno
is set to
.Er ERANGE .
If no conversion could be performed, 0 shall be returned and
If no conversion could be performed, 0 is returned and
the global variable
.Va errno
will be
set to
is set to
.Er EINVAL .
.Sh ERRORS
.Bl -tag -width Er
.It Bq Er EINVAL
The value of base is not supported or
The value of
.Fa base
is not supported or
no conversion could be performed.
.It Bq Er ERANGE
The given string was out of range; the value converted has been clamped.