diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-02-15 18:08:51 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-02-15 18:08:51 +0000 |
commit | 584659776c8a373da78a0751d1ff1f58fbc487e7 (patch) | |
tree | 4313a5e0b1556c1176c99b22170b00f91499f982 /share/man/man9 | |
parent | 7d50d9f07afef8553f51fc15e9db7d402d86820f (diff) |
forever loops may be done with for or while, it doesnt matter;
so remove a line that says it matters.
ok deraadt@
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/style.9 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/share/man/man9/style.9 b/share/man/man9/style.9 index af880d1880e..a341b71afcc 100644 --- a/share/man/man9/style.9 +++ b/share/man/man9/style.9 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: style.9,v 1.45 2006/05/27 05:05:16 deraadt Exp $ +.\" $OpenBSD: style.9,v 1.46 2007/02/15 18:08:50 thib Exp $ .\" .Dd June 18, 2001 .Dt STYLE 9 @@ -298,10 +298,6 @@ Use a space after keywords No braces are used for control statements with zero or only a single statement unless that statement is more than a single line, in which case they are permitted. -Forever loops are done with -.Li for , -not -.Li while . .Bd -literal -offset indent for (p = buf; *p != '\e0'; ++p) ; /* nothing */ |