diff options
author | 2011-01-23 20:43:55 +0000 | |
---|---|---|
committer | 2011-01-23 20:43:55 +0000 | |
commit | 549003fb940802ee1a4779bee45068567d804271 (patch) | |
tree | d1ca23b4b53c54d92db7b41920754c4873ff0a53 | |
parent | While here, maximum percentage is 100 not INT_MAX. Oops. (diff) | |
download | wireguard-openbsd-549003fb940802ee1a4779bee45068567d804271.tar.xz wireguard-openbsd-549003fb940802ee1a4779bee45068567d804271.zip |
Remove an ugly workaround that was needed to cope with the 9-argument-limit
of our former groff-1.15. The workaround relied on undocumented behaviour
of stand-alone .Xo inside .Bd -unfilled; in groff-1.20.1, that undocumented
behaviour is different and the workaround produces wrong output.
Mandoc is happy either way.
While here, remove a useless escape sequence from the next line.
"i guess that's ok" jmc@
-rw-r--r-- | usr.bin/make/make.1 | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index 933b22e0819..08d6ad5ea46 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: make.1,v 1.90 2010/10/18 14:42:16 jmc Exp $ +.\" $OpenBSD: make.1,v 1.91 2011/01/23 20:43:55 schwarze Exp $ .\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $ .\" .\" Copyright (c) 1990, 1993 @@ -30,7 +30,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd $Mdocdate: October 18 2010 $ +.Dd $Mdocdate: January 23 2011 $ .Dt MAKE 1 .Os .Sh NAME @@ -1093,13 +1093,9 @@ is found. For loops are typically used to apply a set of rules to a list of files. The syntax of a for loop is: .Bd -unfilled -offset indent -.Xo -.Ic .for Ar variable Op Ar variable ... -.Ic in -.Ar expression -.Xc +.Ic .for Ar variable Oo Ar variable ... Oc Ic in Ar expression <make-rules> -.Ic \&.endfor +.Ic .endfor .Ed .Pp After the for |