aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2018-04-17 09:05:46 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2018-04-17 09:05:46 +0000
commit604f1c416c128565923d63ab4cd98d1a7ced0cf4 (patch)
tree6f936cd76b50fa9d7273f1a65569a1dd5810ed9d
parente4d6c7fc1765db58e01a80499059d87fa5e85d1f (diff)
Don't put multiple names on a single .Nm line. This fixes apropos(1)
output, from this: strnlen, strlen, strlen,(3) - find length of string │······· ... to this: strlen, strnlen(3) - find length of string PR: 223525 MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=332642
-rw-r--r--contrib/bsnmp/snmpd/snmpmod.358
-rw-r--r--lib/libc/locale/isdigit.33
-rw-r--r--lib/libc/locale/isxdigit.33
-rw-r--r--lib/libc/stdio/printf.314
-rw-r--r--lib/libc/stdlib/qsort.38
-rw-r--r--lib/libc/string/strcpy.35
-rw-r--r--lib/libc/string/strlen.33
-rw-r--r--lib/libc/sys/fsync.23
-rw-r--r--lib/libufs/ufs_disk_close.35
-rw-r--r--share/man/man7/c99.76
-rw-r--r--share/man/man9/OF_device_from_xref.92
-rw-r--r--share/man/man9/printf.95
12 files changed, 74 insertions, 41 deletions
diff --git a/contrib/bsnmp/snmpd/snmpmod.3 b/contrib/bsnmp/snmpd/snmpmod.3
index 80a50fcb0193..ca92bea84d0a 100644
--- a/contrib/bsnmp/snmpd/snmpmod.3
+++ b/contrib/bsnmp/snmpd/snmpmod.3
@@ -102,35 +102,35 @@
.Nm index_compare ,
.Nm index_compare_off ,
.Nm index_append ,
-.Nm index_append_off,
-.Nm snmpd_usmstats,
-.Nm bsnmpd_get_usm_stats,
-.Nm bsnmpd_reset_usm_stats,
-.Nm usm_first_user,
-.Nm usm_next_user,
-.Nm usm_find_user,
-.Nm usm_new_user,
-.Nm usm_delete_user,
-.Nm usm_flush_users,
-.Nm usm_user
-.Nm snmpd_target_stat
-.Nm bsnmpd_get_target_stats
-.Nm target_first_address
-.Nm target_next_address
-.Nm target_new_address
-.Nm target_activate_address
-.Nm target_delete_address
-.Nm target_first_param
-.Nm target_next_param
-.Nm target_new_param
-.Nm target_delete_param
-.Nm target_first_notify
-.Nm target_next_notify
-.Nm target_new_notify
-.Nm target_delete_notify
-.Nm target_flush_all
-.Nm target_address
-.Nm target_param
+.Nm index_append_off ,
+.Nm snmpd_usmstats ,
+.Nm bsnmpd_get_usm_stats ,
+.Nm bsnmpd_reset_usm_stats ,
+.Nm usm_first_user ,
+.Nm usm_next_user ,
+.Nm usm_find_user ,
+.Nm usm_new_user ,
+.Nm usm_delete_user ,
+.Nm usm_flush_users ,
+.Nm usm_user ,
+.Nm snmpd_target_stat ,
+.Nm bsnmpd_get_target_stats ,
+.Nm target_first_address ,
+.Nm target_next_address ,
+.Nm target_new_address ,
+.Nm target_activate_address ,
+.Nm target_delete_address ,
+.Nm target_first_param ,
+.Nm target_next_param ,
+.Nm target_new_param ,
+.Nm target_delete_param ,
+.Nm target_first_notify ,
+.Nm target_next_notify ,
+.Nm target_new_notify ,
+.Nm target_delete_notify ,
+.Nm target_flush_all ,
+.Nm target_address ,
+.Nm target_param ,
.Nm target_notify
.Nd "SNMP daemon loadable module interface"
.Sh LIBRARY
diff --git a/lib/libc/locale/isdigit.3 b/lib/libc/locale/isdigit.3
index 2e425d679bdb..d1a75465e277 100644
--- a/lib/libc/locale/isdigit.3
+++ b/lib/libc/locale/isdigit.3
@@ -36,7 +36,8 @@
.Dt ISDIGIT 3
.Os
.Sh NAME
-.Nm isdigit, isnumber
+.Nm isdigit ,
+.Nm isnumber
.Nd decimal-digit character test
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/locale/isxdigit.3 b/lib/libc/locale/isxdigit.3
index 7e22f35f57e6..7e065a4e255a 100644
--- a/lib/libc/locale/isxdigit.3
+++ b/lib/libc/locale/isxdigit.3
@@ -36,7 +36,8 @@
.Dt ISXDIGIT 3
.Os
.Sh NAME
-.Nm isxdigit, ishexnumber
+.Nm isxdigit ,
+.Nm ishexnumber
.Nd hexadecimal-digit character test
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3
index 3a89b91ac84a..2aec6de3cf2c 100644
--- a/lib/libc/stdio/printf.3
+++ b/lib/libc/stdio/printf.3
@@ -36,8 +36,18 @@
.Dt PRINTF 3
.Os
.Sh NAME
-.Nm printf , fprintf , sprintf , snprintf , asprintf , dprintf ,
-.Nm vprintf , vfprintf, vsprintf , vsnprintf , vasprintf, vdprintf
+.Nm printf ,
+.Nm fprintf ,
+.Nm sprintf ,
+.Nm snprintf ,
+.Nm asprintf ,
+.Nm dprintf ,
+.Nm vprintf ,
+.Nm vfprintf ,
+.Nm vsprintf ,
+.Nm vsnprintf ,
+.Nm vasprintf ,
+.Nm vdprintf
.Nd formatted output conversion
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/stdlib/qsort.3 b/lib/libc/stdlib/qsort.3
index af885ee5f762..94a54ed0de1f 100644
--- a/lib/libc/stdlib/qsort.3
+++ b/lib/libc/stdlib/qsort.3
@@ -36,7 +36,13 @@
.Dt QSORT 3
.Os
.Sh NAME
-.Nm qsort , qsort_b , qsort_r , heapsort , heapsort_b , mergesort, mergesort_b
+.Nm qsort ,
+.Nm qsort_b ,
+.Nm qsort_r ,
+.Nm heapsort ,
+.Nm heapsort_b ,
+.Nm mergesort ,
+.Nm mergesort_b
.Nd sort functions
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/string/strcpy.3 b/lib/libc/string/strcpy.3
index bc555411dde1..36ad1d33cd4c 100644
--- a/lib/libc/string/strcpy.3
+++ b/lib/libc/string/strcpy.3
@@ -36,7 +36,10 @@
.Dt STRCPY 3
.Os
.Sh NAME
-.Nm stpcpy, stpncpy, strcpy , strncpy
+.Nm stpcpy ,
+.Nm stpncpy ,
+.Nm strcpy ,
+.Nm strncpy
.Nd copy strings
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/string/strlen.3 b/lib/libc/string/strlen.3
index fb2fa3cd2acb..bc9b0f3fc0e4 100644
--- a/lib/libc/string/strlen.3
+++ b/lib/libc/string/strlen.3
@@ -36,7 +36,8 @@
.Dt STRLEN 3
.Os
.Sh NAME
-.Nm strlen, strnlen
+.Nm strlen ,
+.Nm strnlen
.Nd find length of string
.Sh LIBRARY
.Lb libc
diff --git a/lib/libc/sys/fsync.2 b/lib/libc/sys/fsync.2
index 6564737b8089..e06617365060 100644
--- a/lib/libc/sys/fsync.2
+++ b/lib/libc/sys/fsync.2
@@ -38,7 +38,8 @@
.Dt FSYNC 2
.Os
.Sh NAME
-.Nm fdatasync, fsync
+.Nm fdatasync ,
+.Nm fsync
.Nd "synchronise changes to a file"
.Sh LIBRARY
.Lb libc
diff --git a/lib/libufs/ufs_disk_close.3 b/lib/libufs/ufs_disk_close.3
index 6eb785a39985..d01e302d98df 100644
--- a/lib/libufs/ufs_disk_close.3
+++ b/lib/libufs/ufs_disk_close.3
@@ -15,7 +15,10 @@
.Dt UFS_DISK_CLOSE 3
.Os
.Sh NAME
-.Nm ufs_disk_close , ufs_disk_fillout , ufs_disk_fillout_blank, ufs_disk_write
+.Nm ufs_disk_close ,
+.Nm ufs_disk_fillout ,
+.Nm ufs_disk_fillout_blank ,
+.Nm ufs_disk_write
.Nd open and close userland UFS disks
.Sh LIBRARY
.Lb libufs
diff --git a/share/man/man7/c99.7 b/share/man/man7/c99.7
index b968a4e510ed..f8c1f530365b 100644
--- a/share/man/man7/c99.7
+++ b/share/man/man7/c99.7
@@ -27,7 +27,11 @@
.Dt C 7
.Os
.Sh NAME
-.Nm c, c78, c89, c90, c99
+.Nm c ,
+.Nm c78 ,
+.Nm c89 ,
+.Nm c90 ,
+.Nm c99
.Nd The C programming language
.Sh DESCRIPTION
C is a general purpose programming language, which has a strong connection
diff --git a/share/man/man9/OF_device_from_xref.9 b/share/man/man9/OF_device_from_xref.9
index 257f33df096e..f6a483f9fd5c 100644
--- a/share/man/man9/OF_device_from_xref.9
+++ b/share/man/man9/OF_device_from_xref.9
@@ -30,7 +30,7 @@
.Os
.Sh NAME
.Nm OF_device_from_xref ,
-.Nm OF_xref_from_device,
+.Nm OF_xref_from_device ,
.Nm OF_device_register_xref
.Nd "manage mappings between xrefs and devices"
.Sh SYNOPSIS
diff --git a/share/man/man9/printf.9 b/share/man/man9/printf.9
index 45a3eeeaf566..0b4bd826aa5c 100644
--- a/share/man/man9/printf.9
+++ b/share/man/man9/printf.9
@@ -30,7 +30,10 @@
.Dt PRINTF 9
.Os
.Sh NAME
-.Nm printf , uprintf , tprintf, log
+.Nm printf ,
+.Nm uprintf ,
+.Nm tprintf ,
+.Nm log
.Nd formatted output conversion
.Sh SYNOPSIS
.In sys/types.h