diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-01-23 20:43:56 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2011-01-23 20:43:56 +0000 |
commit | 6c5323b567fe58013120c72e52664c333e559656 (patch) | |
tree | 801fa65af3e63e986318f5f3962f88a61bb2cc2c /usr.bin/make | |
parent | b6ed50b3e0fe396b5efd4c57dfc200aaeb2c9067 (diff) |
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@
Diffstat (limited to 'usr.bin/make')
-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 |