diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-12-13 15:36:37 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2020-12-13 15:36:37 +0000 |
commit | f911fd694cc4cb9f6578c44f8178bed9272724f6 (patch) | |
tree | 925b766ebff7533e5087f5b1d9d83efc76f7730f | |
parent | 39d49f9d6a0e793d291d9e9fab9b3b630778c887 (diff) |
pr.1: note that -p is unsupported
pr.c: spelling fix
from andras farkas
-rw-r--r-- | usr.bin/pr/pr.1 | 9 | ||||
-rw-r--r-- | usr.bin/pr/pr.c | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/usr.bin/pr/pr.1 b/usr.bin/pr/pr.1 index 516ec057637..8c2fe25d9a5 100644 --- a/usr.bin/pr/pr.1 +++ b/usr.bin/pr/pr.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pr.1,v 1.27 2014/06/04 07:57:27 jmc Exp $ +.\" $OpenBSD: pr.1,v 1.28 2020/12/13 15:36:36 jmc Exp $ .\" .\" Copyright (c) 1991 Keith Muller. .\" Copyright (c) 1993 @@ -33,7 +33,7 @@ .\" .\" from: @(#)pr.1 8.1 (Berkeley) 6/6/93 .\" -.Dd $Mdocdate: June 4 2014 $ +.Dd $Mdocdate: December 13 2020 $ .Dt PR 1 .Os .Sh NAME @@ -314,7 +314,10 @@ The .Nm utility is compliant with the .St -p1003.1-2008 -specification. +specification, +except that the flag +.Op Fl p +is unsupported. .Pp The flag .Op Fl f diff --git a/usr.bin/pr/pr.c b/usr.bin/pr/pr.c index 9339e0ed221..64b5a820a85 100644 --- a/usr.bin/pr/pr.c +++ b/usr.bin/pr/pr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pr.c,v 1.43 2020/01/22 07:52:37 deraadt Exp $ */ +/* $OpenBSD: pr.c,v 1.44 2020/12/13 15:36:36 jmc Exp $ */ /*- * Copyright (c) 1991 Keith Muller. @@ -64,7 +64,7 @@ * pr: more boundary conditions than a four-legged porcupine * * the original version didn't support form-feeds, while many of the ad-hoc - * pr implementations out there do. Addding this and making it work reasonably + * pr implementations out there do. Adding this and making it work reasonably * in all four output modes required quite a bit of hacking and a few minor * bugs were noted and fixed in the process. Some implementations have this * as the as -f, some as -F so we accept either. |