[PATCH] man3/m-n.3: srcfix: Use a single-font-style macro for a single argument

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



  Use a single-font-style macro (".B", ".I") for a single argument.

  Remove a superfluous ".RE" in "malloc.3".

  Remove unneeded quotation marks (").

  Separate "()" from the name of a function in file "nl_langinfo.3".

  The output from "nroff" and "groff" is unchanged, except for the style
of the parentheses of a function name in "nl_langinfo.3".

Signed-off-by: Bjarni Ingi Gislason <bjarniig@xxxxxxxxx>
---
 man3/makedev.3          |  2 +-
 man3/malloc.3           | 11 +++----
 man3/malloc_get_state.3 |  2 +-
 man3/mallopt.3          | 72 ++++++++++++++++++++---------------------
 man3/mblen.3            |  2 +-
 man3/mbrlen.3           |  6 ++--
 man3/mbrtowc.3          | 14 ++++----
 man3/mbsnrtowcs.3       |  4 +--
 man3/mbsrtowcs.3        |  2 +-
 man3/mbstowcs.3         |  2 +-
 man3/mbtowc.3           |  8 ++---
 man3/mcheck.3           |  4 +--
 man3/memccpy.3          |  2 +-
 man3/memchr.3           |  2 +-
 man3/memmem.3           |  2 +-
 man3/mkstemp.3          |  2 +-
 man3/modf.3             |  4 +--
 man3/mq_open.3          |  4 +--
 man3/mtrace.3           |  4 +--
 man3/newlocale.3        | 16 ++++-----
 man3/nextup.3           |  4 +--
 man3/nl_langinfo.3      |  6 ++--
 man3/ntp_gettime.3      |  2 +-
 23 files changed, 88 insertions(+), 89 deletions(-)

diff --git a/man3/makedev.3 b/man3/makedev.3
index 3387c6b62..6fb95855b 100644
--- a/man3/makedev.3
+++ b/man3/makedev.3
@@ -102,7 +102,7 @@ However, this behavior was deprecated in glibc 2.25,
 .\" glibc commit dbab6577c6684c62bd2521c1c29dc25c3cac966f
 and since glibc 2.28,
 .\" glibc commit e16deca62e16f645213dffd4ecd1153c37765f17
-.IR <sys/types.h>
+.I <sys/types.h>
 no longer provides these definitions.
 .SH SEE ALSO
 .BR mknod (2),
diff --git a/man3/malloc.3 b/man3/malloc.3
index c68dcf55c..40202777c 100644
--- a/man3/malloc.3
+++ b/man3/malloc.3
@@ -52,7 +52,6 @@ Feature Test Macro Requirements for glibc (see
 .BR reallocarray ():
 .ad l
 _GNU_SOURCE
-.RE
     Since glibc 2.29:
         _DEFAULT_SOURCE
     Glibc 2.28 and earlier:
@@ -246,9 +245,9 @@ can fail with the following error:
 .B ENOMEM
 Out of memory.
 Possibly, the application hit the
-.BR RLIMIT_AS
+.B RLIMIT_AS
 or
-.BR RLIMIT_DATA
+.B RLIMIT_DATA
 limit described in
 .BR getrlimit (2).
 .SH ATTRIBUTES
@@ -285,9 +284,9 @@ is available.
 In case it turns out that the system is out of memory,
 one or more processes will be killed by the OOM killer.
 For more information, see the description of
-.IR /proc/sys/vm/overcommit_memory
+.I /proc/sys/vm/overcommit_memory
 and
-.IR /proc/sys/vm/oom_adj
+.I /proc/sys/vm/oom_adj
 in
 .BR proc (5),
 and the Linux kernel source file
@@ -324,7 +323,7 @@ allocate and free memory,
 there could be contention for these mutexes.
 To scalably handle memory allocation in multithreaded applications,
 glibc creates additional
-.IR "memory allocation arenas"
+.I memory allocation arenas
 if mutex contention is detected.
 Each arena is a large region of memory that is internally allocated
 by the system
diff --git a/man3/malloc_get_state.3 b/man3/malloc_get_state.3
index f94efccf4..a20566a37 100644
--- a/man3/malloc_get_state.3
+++ b/man3/malloc_get_state.3
@@ -29,7 +29,7 @@ malloc_get_state, malloc_set_state \- record and restore state of malloc impleme
 .nf
 .B #include <malloc.h>
 .PP
-.BI "void* malloc_get_state(void);"
+.B void* malloc_get_state(void);
 .PP
 .BI "int malloc_set_state(void *" state );
 .fi
diff --git a/man3/mallopt.3 b/man3/mallopt.3
index a0199064a..a4568265f 100644
--- a/man3/mallopt.3
+++ b/man3/mallopt.3
@@ -37,7 +37,7 @@ function adjusts parameters that control the behavior of the
 memory-allocation functions (see
 .BR malloc (3)).
 The
-.IR param
+.I param
 argument specifies the parameter to be modified, and
 .I value
 specifies the new value for that parameter.
@@ -45,7 +45,7 @@ specifies the new value for that parameter.
 The following values can be specified for
 .IR param :
 .TP
-.BR M_ARENA_MAX
+.B M_ARENA_MAX
 If this parameter has a nonzero value,
 it defines a hard limit on the maximum number of arenas that can be created.
 An arena represents a pool of memory that can be used by
@@ -76,7 +76,7 @@ to match the number of threads.
 This is similar in behavior to strategies taken by tcmalloc and jemalloc
 (e.g., per-thread allocation pools).
 .TP
-.BR M_ARENA_TEST
+.B M_ARENA_TEST
 This parameter specifies a value, in number of arenas created,
 at which point the system configuration will be examined
 to determine a hard limit on the number of created arenas.
@@ -92,7 +92,7 @@ the total number of arenas.
 The default value for the
 .B M_ARENA_TEST
 parameter is 2 on systems where
-.IR sizeof(long)
+.I sizeof(long)
 is 4; otherwise the default value is 8.
 .IP
 This parameter has been available since glibc 2.10 via
@@ -105,7 +105,7 @@ is not used when
 .B M_ARENA_MAX
 has a nonzero value.
 .TP
-.BR M_CHECK_ACTION
+.B M_CHECK_ACTION
 Setting this parameter controls how glibc responds when various kinds
 of programming errors are detected (e.g., freeing the same pointer twice).
 The 3 least significant bits (2, 1, and 0) of the value assigned
@@ -133,7 +133,7 @@ then, between printing the error message and aborting,
 the program also prints a stack trace in the manner of
 .BR backtrace (3),
 and prints the process's memory mapping in the style of
-.IR /proc/[pid]/maps
+.I /proc/[pid]/maps
 (see
 .BR proc (5)).
 .TP
@@ -170,7 +170,7 @@ and abort the program.
 .RE
 .IP
 Since glibc 2.3.4, the default value for the
-.BR M_CHECK_ACTION
+.B M_CHECK_ACTION
 parameter is 3.
 In glibc version 2.3.3 and earlier, the default value is 1.
 .IP
@@ -179,7 +179,7 @@ Using a nonzero
 value can be useful because otherwise a crash may happen much later,
 and the true cause of the problem is then very hard to track down.
 .TP
-.BR M_MMAP_MAX
+.B M_MMAP_MAX
 .\" The following text adapted from comments in the glibc source:
 This parameter specifies the maximum number of allocation requests that
 may be simultaneously serviced using
@@ -196,9 +196,9 @@ Setting this parameter to 0 disables the use of
 .BR mmap (2)
 for servicing large allocation requests.
 .TP
-.BR M_MMAP_THRESHOLD
+.B M_MMAP_THRESHOLD
 For allocations greater than or equal to the limit specified (in bytes) by
-.BR M_MMAP_THRESHOLD
+.B M_MMAP_THRESHOLD
 that can't be satisfied from the free list,
 the memory-allocation functions employ
 .BR mmap (2)
@@ -222,21 +222,21 @@ and the kernel must perform the expensive task of zeroing out
 memory allocated via
 .BR mmap (2).
 Balancing these factors leads to a default setting of 128*1024 for the
-.BR M_MMAP_THRESHOLD
+.B M_MMAP_THRESHOLD
 parameter.
 .IP
 The lower limit for this parameter is 0.
 The upper limit is
 .BR DEFAULT_MMAP_THRESHOLD_MAX :
 512*1024 on 32-bit systems or
-.IR 4*1024*1024*sizeof(long)
+.I 4*1024*1024*sizeof(long)
 on 64-bit systems.
 .IP
-.IR Note:
+.I Note:
 Nowadays, glibc uses a dynamic mmap threshold by default.
 The initial value of the threshold is 128*1024,
 but when blocks larger than the current threshold and less than or equal to
-.BR DEFAULT_MMAP_THRESHOLD_MAX
+.B DEFAULT_MMAP_THRESHOLD_MAX
 are freed,
 the threshold is adjusted upward to the size of the freed block.
 When dynamic mmap thresholding is in effect,
@@ -247,7 +247,7 @@ Dynamic adjustment of the mmap threshold is disabled if any of the
 .BR M_TOP_PAD ,
 .BR M_MMAP_THRESHOLD ,
 or
-.BR M_MMAP_MAX
+.B M_MMAP_MAX
 parameters is set.
 .TP
 .BR M_MXFAST " (since glibc 2.3)"
@@ -263,7 +263,7 @@ although memory fragmentation and the overall memory footprint
 of the program can increase.
 .IP
 The default value for this parameter is
-.IR "64*sizeof(size_t)/4"
+.I 64*sizeof(size_t)/4
 (i.e., 64 on 32-bit architectures).
 The range for this parameter is 0 to
 .IR "80*sizeof(size_t)/4" .
@@ -288,7 +288,7 @@ or reuse values in memory that has already been freed.
 .IP
 The default value for this parameter is 0.
 .TP
-.BR M_TOP_PAD
+.B M_TOP_PAD
 This parameter defines the amount of padding to employ when calling
 .BR sbrk (2)
 to modify the program break.
@@ -297,7 +297,7 @@ This parameter has an effect in the following circumstances:
 .RS
 .IP * 3
 When the program break is increased, then
-.BR M_TOP_PAD
+.B M_TOP_PAD
 bytes are added to the
 .BR sbrk (2)
 request.
@@ -313,7 +313,7 @@ In either case,
 the amount of padding is always rounded to a system page boundary.
 .IP
 Modifying
-.BR M_TOP_PAD
+.B M_TOP_PAD
 is a trade-off between increasing the number of system calls
 (when the parameter is set low)
 and wasting unused memory at the top of the heap
@@ -322,7 +322,7 @@ and wasting unused memory at the top of the heap
 The default value for this parameter is 128*1024.
 .\" DEFAULT_TOP_PAD in glibc source
 .TP
-.BR M_TRIM_THRESHOLD
+.B M_TRIM_THRESHOLD
 When the amount of contiguous free memory at the top of the heap
 grows sufficiently large,
 .BR free (3)
@@ -332,7 +332,7 @@ to release this memory back to the system.
 (This can be useful in programs that continue to execute for
 a long period after freeing a significant amount of memory.)
 The
-.BR M_TRIM_THRESHOLD
+.B M_TRIM_THRESHOLD
 parameter specifies the minimum size (in bytes) that
 this block of memory must reach before
 .BR sbrk (2)
@@ -340,11 +340,11 @@ is used to trim the heap.
 .IP
 The default value for this parameter is 128*1024.
 Setting
-.BR M_TRIM_THRESHOLD
+.B M_TRIM_THRESHOLD
 to \-1 disables trimming completely.
 .IP
 Modifying
-.BR M_TRIM_THRESHOLD
+.B M_TRIM_THRESHOLD
 is a trade-off between increasing the number of system calls
 (when the parameter is set low)
 and wasting unused memory at the top of the heap
@@ -369,17 +369,17 @@ these variables are ignored in set-user-ID and set-group-ID programs.
 The environment variables are as follows
 (note the trailing underscore at the end of the name of some variables):
 .TP
-.BR MALLOC_ARENA_MAX
+.B MALLOC_ARENA_MAX
 Controls the same parameter as
 .BR mallopt ()
 .BR M_ARENA_MAX .
 .TP
-.BR MALLOC_ARENA_TEST
+.B MALLOC_ARENA_TEST
 Controls the same parameter as
 .BR mallopt ()
 .BR M_ARENA_TEST .
 .TP
-.BR MALLOC_CHECK_
+.B MALLOC_CHECK_
 This environment variable controls the same parameter as
 .BR mallopt ()
 .BR M_CHECK_ACTION .
@@ -402,35 +402,35 @@ whose meaning is as described for
 Any characters beyond the initial digit are ignored.
 .IP
 For security reasons, the effect of
-.BR MALLOC_CHECK_
+.B MALLOC_CHECK_
 is disabled by default for set-user-ID and set-group-ID programs.
 However, if the file
-.IR /etc/suid\-debug
+.I /etc/suid\-debug
 exists (the content of the file is irrelevant), then
-.BR MALLOC_CHECK_
+.B MALLOC_CHECK_
 also has an effect for set-user-ID and set-group-ID programs.
 .TP
-.BR MALLOC_MMAP_MAX_
+.B MALLOC_MMAP_MAX_
 Controls the same parameter as
 .BR mallopt ()
 .BR M_MMAP_MAX .
 .TP
-.BR MALLOC_MMAP_THRESHOLD_
+.B MALLOC_MMAP_THRESHOLD_
 Controls the same parameter as
 .BR mallopt ()
 .BR M_MMAP_THRESHOLD .
 .TP
-.BR MALLOC_PERTURB_
+.B MALLOC_PERTURB_
 Controls the same parameter as
 .BR mallopt ()
 .BR M_PERTURB .
 .TP
-.BR MALLOC_TRIM_THRESHOLD_
+.B MALLOC_TRIM_THRESHOLD_
 Controls the same parameter as
 .BR mallopt ()
 .BR M_TRIM_THRESHOLD .
 .TP
-.BR MALLOC_TOP_PAD_
+.B MALLOC_TOP_PAD_
 Controls the same parameter as
 .BR mallopt ()
 .BR M_TOP_PAD .
@@ -451,7 +451,7 @@ set.
 This function is not specified by POSIX or the C standards.
 A similar function exists on many System V derivatives,
 but the range of values for
-.IR param
+.I param
 varies across systems.
 The SVID defined options
 .BR M_MXFAST ,
@@ -516,7 +516,7 @@ The program below demonstrates the use of
 .BR M_CHECK_ACTION .
 If the program is supplied with an (integer) command-line argument,
 then that argument is used to set the
-.BR M_CHECK_ACTION
+.B M_CHECK_ACTION
 parameter.
 The program then allocates a block of memory,
 and frees it twice (an error).
diff --git a/man3/mblen.3 b/man3/mblen.3
index 84edc016a..ded94bc07 100644
--- a/man3/mblen.3
+++ b/man3/mblen.3
@@ -42,7 +42,7 @@ character, it returns the number of bytes that were consumed from
 If the multibyte character is the null wide character, it returns 0.
 .PP
 If the
-.IR n
+.I n
 bytes starting at
 .I s
 do not contain a complete multibyte
diff --git a/man3/mbrlen.3 b/man3/mbrlen.3
index 1261fecea..db635d472 100644
--- a/man3/mbrlen.3
+++ b/man3/mbrlen.3
@@ -42,7 +42,7 @@ shift state
 to the initial state and returns 0.
 .PP
 If the
-.IR n
+.I n
 bytes starting at
 .I s
 do not contain a complete multibyte
@@ -63,7 +63,7 @@ contains an invalid multibyte
 sequence before the next complete character,
 .BR mbrlen ()
 returns
-.IR "(size_t)\ \-1"
+.I (size_t)\ \-1
 and sets
 .I errno
 to
@@ -96,7 +96,7 @@ to
 if an invalid multibyte sequence was
 encountered.
 It returns
-.IR "(size_t)\ \-2"
+.I (size_t)\ \-2
 if it couldn't parse a complete multibyte
 character, meaning that
 .I n
diff --git a/man3/mbrtowc.3 b/man3/mbrtowc.3
index 5526b2da3..6d2d598db 100644
--- a/man3/mbrtowc.3
+++ b/man3/mbrtowc.3
@@ -26,7 +26,7 @@ mbrtowc \- convert a multibyte sequence to a wide character
 .fi
 .SH DESCRIPTION
 The main case for this function is when
-.IR s
+.I s
 is not NULL and
 .I pwc
 is
@@ -53,7 +53,7 @@ state
 to the initial state and returns 0.
 .PP
 If the
-.IR n
+.I n
 bytes starting at
 .I s
 do not contain a complete multibyte
@@ -74,7 +74,7 @@ contains an invalid multibyte
 sequence before the next complete character,
 .BR mbrtowc ()
 returns
-.IR "(size_t)\ \-1"
+.I (size_t)\ \-1
 and sets
 .I errno
 to
@@ -85,7 +85,7 @@ the effects on
 are undefined.
 .PP
 A different case is when
-.IR s
+.I s
 is not NULL but
 .I pwc
 is NULL.
@@ -98,7 +98,7 @@ A third case is when
 .I s
 is NULL.
 In this case,
-.IR pwc
+.I pwc
 and
 .I n
 are
@@ -133,12 +133,12 @@ state known only to the
 .BR mbrtowc ()
 function is used instead.
 Otherwise,
-.IR *ps
+.I *ps
 must be a valid
 .I mbstate_t
 object.
 An
-.IR mbstate_t
+.I mbstate_t
 object
 .I a
 can be initialized to the initial state
diff --git a/man3/mbsnrtowcs.3 b/man3/mbsnrtowcs.3
index e0c51c1f1..30dfe2aab 100644
--- a/man3/mbsnrtowcs.3
+++ b/man3/mbsnrtowcs.3
@@ -50,7 +50,7 @@ function, except that
 the number of bytes to be converted, starting at
 .IR *src ,
 is limited to at most
-.IR nms
+.I nms
 bytes.
 .PP
 If
@@ -134,7 +134,7 @@ the previous character (if any), or at the end of the input buffer.
 The glibc implementation adopts the former behavior.
 .PP
 If
-.IR dest
+.I dest
 is NULL,
 .I len
 is ignored, and the conversion proceeds as
diff --git a/man3/mbsrtowcs.3 b/man3/mbsrtowcs.3
index 41ddc1cfb..13ea8ca0b 100644
--- a/man3/mbsrtowcs.3
+++ b/man3/mbsrtowcs.3
@@ -89,7 +89,7 @@ characters written to
 excluding the terminating null wide character, is returned.
 .PP
 If
-.IR dest
+.I dest
 is NULL,
 .I len
 is ignored,
diff --git a/man3/mbstowcs.3 b/man3/mbstowcs.3
index 5a4cc39d5..30e0ece00 100644
--- a/man3/mbstowcs.3
+++ b/man3/mbstowcs.3
@@ -70,7 +70,7 @@ characters at
 .IR dest .
 .PP
 If
-.IR dest
+.I dest
 is NULL,
 .I n
 is ignored, and the conversion proceeds as
diff --git a/man3/mbtowc.3 b/man3/mbtowc.3
index 26f37e2c9..d7c0f85c1 100644
--- a/man3/mbtowc.3
+++ b/man3/mbtowc.3
@@ -24,7 +24,7 @@ mbtowc \- convert a multibyte sequence to a wide character
 .fi
 .SH DESCRIPTION
 The main case for this function is when
-.IR s
+.I s
 is not NULL and
 .I pwc
 is
@@ -49,7 +49,7 @@ of bytes that were consumed from
 otherwise it returns 0.
 .PP
 If the
-.IR n
+.I n
 bytes starting at
 .I s
 do not contain a complete multibyte
@@ -63,7 +63,7 @@ This can happen even if
 if the multibyte string contains redundant shift sequences.
 .PP
 A different case is when
-.IR s
+.I s
 is not NULL but
 .I pwc
 is NULL.
@@ -76,7 +76,7 @@ A third case is when
 .I s
 is NULL.
 In this case,
-.IR pwc
+.I pwc
 and
 .I n
 are
diff --git a/man3/mcheck.3 b/man3/mcheck.3
index 474d00a08..3740f7884 100644
--- a/man3/mcheck.3
+++ b/man3/mcheck.3
@@ -55,7 +55,7 @@ function must be called before the first call to
 .BR malloc (3)
 or a related function.
 In cases where this is difficult to ensure, linking the program with
-.IR \-lmcheck
+.I \-lmcheck
 inserts an implicit call to
 .BR mcheck ()
 (with a NULL argument)
@@ -85,7 +85,7 @@ that indicates what type of inconsistency was detected.
 If
 .I abortfunc
 is NULL, a default function prints an error message on
-.IR stderr
+.I stderr
 and calls
 .BR abort (3).
 .PP
diff --git a/man3/memccpy.3 b/man3/memccpy.3
index b64c2c58d..481c8a094 100644
--- a/man3/memccpy.3
+++ b/man3/memccpy.3
@@ -57,7 +57,7 @@ The
 .BR memccpy ()
 function returns a pointer to the next character
 in
-.IR dest
+.I dest
 after
 .IR c ,
 or NULL if
diff --git a/man3/memchr.3 b/man3/memchr.3
index 75ec6daea..f97478db0 100644
--- a/man3/memchr.3
+++ b/man3/memchr.3
@@ -89,7 +89,7 @@ that an instance of
 lies somewhere in the memory area starting at the location pointed to by
 .IR s ,
 and so performs an optimized search for
-.IR c
+.I c
 (i.e., no use of a count argument to limit the range of the search).
 If an instance of
 .I c
diff --git a/man3/memmem.3 b/man3/memmem.3
index 8c258d87f..f3256c0f4 100644
--- a/man3/memmem.3
+++ b/man3/memmem.3
@@ -43,7 +43,7 @@ The
 .BR memmem ()
 function finds the start of the first occurrence
 of the substring
-.IR needle
+.I needle
 of length
 .I needlelen
 in the memory
diff --git a/man3/mkstemp.3 b/man3/mkstemp.3
index 2ae18b2ea..431bcb484 100644
--- a/man3/mkstemp.3
+++ b/man3/mkstemp.3
@@ -116,7 +116,7 @@ includes the values
 .BR O_RDWR ,
 .BR O_CREAT ,
 and
-.BR O_EXCL
+.B O_EXCL
 in the
 .I flags
 argument given to
diff --git a/man3/modf.3 b/man3/modf.3
index d5b2ef8fa..dcc56484b 100644
--- a/man3/modf.3
+++ b/man3/modf.3
@@ -74,13 +74,13 @@ These functions return the fractional part of
 If
 .I x
 is a NaN, a NaN is returned, and
-.IR *iptr
+.I *iptr
 is set to a NaN.
 .PP
 If
 .I x
 is positive infinity (negative infinity), +0 (\-0) is returned, and
-.IR *iptr
+.I *iptr
 is set to positive infinity (negative infinity).
 .SH ERRORS
 No errors occur.
diff --git a/man3/mq_open.3 b/man3/mq_open.3
index 53519ab5b..ac6eb3ff2 100644
--- a/man3/mq_open.3
+++ b/man3/mq_open.3
@@ -119,7 +119,7 @@ as for
 The permissions settings are masked against the process umask.
 .PP
 The fields of the
-.IR "struct mq_attr"
+.I struct mq_attr
 pointed to
 .I attr
 specify the maximum number of messages and
@@ -233,7 +233,7 @@ for details of these limits.)
 The per-process limit on the number of open file
 and message queue descriptors has been reached
 (see the description of
-.BR RLIMIT_NOFILE
+.B RLIMIT_NOFILE
 in
 .BR getrlimit (2)).
 .TP
diff --git a/man3/mtrace.3 b/man3/mtrace.3
index ff9f0fc5d..aca6a0f97 100644
--- a/man3/mtrace.3
+++ b/man3/mtrace.3
@@ -64,14 +64,14 @@ the tracing information is to be recorded.
 If the pathname is successfully opened, it is truncated to zero length.
 .PP
 If
-.BR MALLOC_TRACE
+.B MALLOC_TRACE
 is not set,
 or the pathname it specifies is invalid or not writable,
 then no hook functions are installed, and
 .BR mtrace ()
 has no effect.
 In set-user-ID and set-group-ID programs,
-.BR MALLOC_TRACE
+.B MALLOC_TRACE
 is ignored, and
 .BR mtrace ()
 has no effect.
diff --git a/man3/newlocale.3 b/man3/newlocale.3
index 19064d7a2..99eeabe44 100644
--- a/man3/newlocale.3
+++ b/man3/newlocale.3
@@ -94,11 +94,11 @@ remain valid and unchanged.
 If
 .I base
 is the special locale object
-.BR LC_GLOBAL_LOCALE
+.B LC_GLOBAL_LOCALE
 (see
 .BR duplocale (3)),
 or is not
-.IR "(locale_t)\ 0"
+.I (locale_t)\ 0
 and is not a valid locale object handle,
 the behavior is undefined.
 .PP
@@ -133,7 +133,7 @@ will be used in the object returned by
 .BR newlocale ().
 If a new locale object is being created,
 data for all categories not specified in
-.IR category_mask
+.I category_mask
 is taken from the default ("POSIX") locale.
 .PP
 The following preset values of
@@ -150,7 +150,7 @@ Equivalent to "POSIX".
 ""
 An implementation-defined native environment
 corresponding to the values of the
-.BR LC_*
+.B LC_*
 and
 .B LANG
 environment variables (see
@@ -167,7 +167,7 @@ or
 If
 .I locobj
 is
-.BR LC_GLOBAL_LOCALE
+.B LC_GLOBAL_LOCALE
 or is not valid locale object handle, the results are undefined.
 .PP
 Once a locale object has been freed,
@@ -253,7 +253,7 @@ The following shell sessions show some example runs of this program.
 Set the
 .B LC_NUMERIC
 category to
-.IR fr_FR
+.I fr_FR
 (French):
 .PP
 .in +4n
@@ -267,12 +267,12 @@ Fri Mar  7 00:25:08 2014
 Set the
 .B LC_NUMERIC
 category to
-.IR fr_FR
+.I fr_FR
 (French),
 and the
 .B LC_TIME
 category to
-.IR it_IT
+.I it_IT
 (Italian):
 .PP
 .in +4n
diff --git a/man3/nextup.3 b/man3/nextup.3
index ec269adcc..8d4995165 100644
--- a/man3/nextup.3
+++ b/man3/nextup.3
@@ -74,7 +74,7 @@ is Nan,
 the returned value is NaN.
 .PP
 The value returned by
-.IR nextdown(x)
+.I nextdown(x)
 is
 .IR \-nextup(\-x) ,
 and similarly for the other types.
@@ -103,7 +103,7 @@ T}	Thread safety	MT-Safe
 .TE
 .SH CONFORMING TO
 These functions are described in
-.IR "IEEE Std 754-2008 - Standard for Floating-Point Arithmetic"
+.I IEEE Std 754-2008 - Standard for Floating-Point Arithmetic
 and
 .IR "ISO/IEC TS 18661".
 .SH SEE ALSO
diff --git a/man3/nl_langinfo.3 b/man3/nl_langinfo.3
index d8b24d233..90b59104d 100644
--- a/man3/nl_langinfo.3
+++ b/man3/nl_langinfo.3
@@ -50,11 +50,11 @@ and
 functions provide access to locale information
 in a more flexible way than
 .BR localeconv (3).
-.BR nl_langinfo()
+.BR nl_langinfo ()
 returns a string which is the value corresponding to
 \fIitem\fP in the program's current global
 locale.
-.BR nl_langinfo()
+.BR nl_langinfo ()
 returns a string which is the value corresponding to \fIitem\fP
 for the locale identified by the locale object \fIlocale\fP,
 which was previously created by
@@ -187,7 +187,7 @@ The behavior of
 is undefined if
 .I locale
 is the special locale object
-.BR LC_GLOBAL_LOCALE
+.B LC_GLOBAL_LOCALE
 or is not a valid locale object handle.
 .SH EXAMPLE
 The following program sets the character type and the numeric locale
diff --git a/man3/ntp_gettime.3 b/man3/ntp_gettime.3
index ff54a1ee0..1bf59926f 100644
--- a/man3/ntp_gettime.3
+++ b/man3/ntp_gettime.3
@@ -95,7 +95,7 @@ structure in which the
 .IR time ,
 .IR maxerror ,
 and
-.IR esterror
+.I esterror
 fields are filled in.
 .PP
 .BR ntp_gettimex ()
-- 
2.20.1



[Index of Archives]     [Kernel Documentation]     [Netdev]     [Linux Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux