svn commit: r332642 - in head: contrib/bsnmp/snmpd lib/libc/locale lib/libc/stdio lib/libc/stdlib lib/libc/string lib/libc/sys lib/libufs share/man/man7 share/man/man9

Edward Tomasz Napierala trasz at FreeBSD.org
Tue Apr 17 09:05:49 UTC 2018


Author: trasz
Date: Tue Apr 17 09:05:46 2018
New Revision: 332642
URL: https://svnweb.freebsd.org/changeset/base/332642

Log:
  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

Modified:
  head/contrib/bsnmp/snmpd/snmpmod.3
  head/lib/libc/locale/isdigit.3
  head/lib/libc/locale/isxdigit.3
  head/lib/libc/stdio/printf.3
  head/lib/libc/stdlib/qsort.3
  head/lib/libc/string/strcpy.3
  head/lib/libc/string/strlen.3
  head/lib/libc/sys/fsync.2
  head/lib/libufs/ufs_disk_close.3
  head/share/man/man7/c99.7
  head/share/man/man9/OF_device_from_xref.9
  head/share/man/man9/printf.9

Modified: head/contrib/bsnmp/snmpd/snmpmod.3
==============================================================================
--- head/contrib/bsnmp/snmpd/snmpmod.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/contrib/bsnmp/snmpd/snmpmod.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/locale/isdigit.3
==============================================================================
--- head/lib/libc/locale/isdigit.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/locale/isdigit.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/locale/isxdigit.3
==============================================================================
--- head/lib/libc/locale/isxdigit.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/locale/isxdigit.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/stdio/printf.3
==============================================================================
--- head/lib/libc/stdio/printf.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/stdio/printf.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/stdlib/qsort.3
==============================================================================
--- head/lib/libc/stdlib/qsort.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/stdlib/qsort.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/string/strcpy.3
==============================================================================
--- head/lib/libc/string/strcpy.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/string/strcpy.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/string/strlen.3
==============================================================================
--- head/lib/libc/string/strlen.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/string/strlen.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libc/sys/fsync.2
==============================================================================
--- head/lib/libc/sys/fsync.2	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libc/sys/fsync.2	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/lib/libufs/ufs_disk_close.3
==============================================================================
--- head/lib/libufs/ufs_disk_close.3	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/lib/libufs/ufs_disk_close.3	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/share/man/man7/c99.7
==============================================================================
--- head/share/man/man7/c99.7	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/share/man/man7/c99.7	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/share/man/man9/OF_device_from_xref.9
==============================================================================
--- head/share/man/man9/OF_device_from_xref.9	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/share/man/man9/OF_device_from_xref.9	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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

Modified: head/share/man/man9/printf.9
==============================================================================
--- head/share/man/man9/printf.9	Tue Apr 17 02:33:54 2018	(r332641)
+++ head/share/man/man9/printf.9	Tue Apr 17 09:05:46 2018	(r332642)
@@ -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


More information about the svn-src-all mailing list