summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2014-07-13 23:03:03 +0000
committerschwarze <schwarze@openbsd.org>2014-07-13 23:03:03 +0000
commite82db24da19c812b56b8c3aace64fa9d5cfc9e58 (patch)
treec885d59b8c5756ce71f91725fb4db2446e0edc52
parentboot(9): Cosmetic changes to improve diff'ability. (diff)
downloadwireguard-openbsd-e82db24da19c812b56b8c3aace64fa9d5cfc9e58.tar.xz
wireguard-openbsd-e82db24da19c812b56b8c3aace64fa9d5cfc9e58.zip
Do not fold multiple function arguments into the same .Fn argument:
That may cause indexing and formatting issues. Buggy mdoc(7) code mentioned by uebayasi@ to jmc@.
-rw-r--r--share/man/man9/panic.96
-rw-r--r--share/man/man9/pmap.96
2 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/panic.9 b/share/man/man9/panic.9
index 5f5d5041b40..a4ce923df80 100644
--- a/share/man/man9/panic.9
+++ b/share/man/man9/panic.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: panic.9,v 1.8 2013/06/04 19:27:10 schwarze Exp $
+.\" $OpenBSD: panic.9,v 1.9 2014/07/13 23:03:03 schwarze Exp $
.\" $NetBSD: panic.9,v 1.2 1996/10/09 17:20:04 explorer Exp $
.\"
.\" Copyright (c) 1996 Michael Graff.
@@ -30,7 +30,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: June 4 2013 $
+.Dd $Mdocdate: July 13 2014 $
.Dt PANIC 9
.Os
.Sh NAME
@@ -40,7 +40,7 @@
.In sys/types.h
.In sys/systm.h
.Ft void
-.Fn panic "const char *fmt, ..."
+.Fn panic "const char *fmt" ...
.Sh DESCRIPTION
The
.Fn panic
diff --git a/share/man/man9/pmap.9 b/share/man/man9/pmap.9
index 5d3c14f4f42..d4eb172d053 100644
--- a/share/man/man9/pmap.9
+++ b/share/man/man9/pmap.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pmap.9,v 1.12 2013/06/04 19:27:11 schwarze Exp $
+.\" $OpenBSD: pmap.9,v 1.13 2014/07/13 23:03:03 schwarze Exp $
.\"
.\" Copyright (c) 2001, 2002, 2003 CubeSoft Communications, Inc.
.\" <http://www.csoft.org>
@@ -24,7 +24,7 @@
.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: June 4 2013 $
+.Dd $Mdocdate: July 13 2014 $
.Dt PMAP 9
.Os
.Sh NAME
@@ -221,7 +221,7 @@ layer that the mappings need to be made correct.
.Ft void
.Fn pmap_protect "pmap_t pmap" "vaddr_t sva" "vaddr_t eva" "vm_prot_t prot"
.Ft void
-.Fn pmap_page_protect "struct vm_page *pg, vm_prot_t prot"
+.Fn pmap_page_protect "struct vm_page *pg" "vm_prot_t prot"
.nr nS 0
.Pp
The