diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/expand/expand.1 | 6 | ||||
-rw-r--r-- | usr.bin/unexpand/unexpand.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/expand/expand.1 b/usr.bin/expand/expand.1 index b9b17b49b7f..5850769d5d5 100644 --- a/usr.bin/expand/expand.1 +++ b/usr.bin/expand/expand.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: expand.1,v 1.3 1998/09/23 04:32:39 aaron Exp $ +.\" $OpenBSD: expand.1,v 1.4 1999/02/11 23:08:24 deraadt Exp $ .\" $NetBSD: expand.1,v 1.3 1995/09/02 06:19:45 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1993 @@ -45,10 +45,10 @@ .Nm expand .Op Fl Ns Ar tabstop .Op Fl Ns Ar tab1 , tab2 , ... , tabn -.Ar file Op Ar ... +.Op Ar file Ar ... .Nm unexpand .Op Fl a -.Ar file Op Ar ... +.Op Ar file Ar ... .Sh DESCRIPTION .Nm expand processes the named files or the standard input writing diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c index 902e14968aa..b2fb1d32d0a 100644 --- a/usr.bin/unexpand/unexpand.c +++ b/usr.bin/unexpand/unexpand.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unexpand.c,v 1.2 1996/06/26 05:42:08 deraadt Exp $ */ +/* $OpenBSD: unexpand.c,v 1.3 1999/02/11 23:08:25 deraadt Exp $ */ /* $NetBSD: unexpand.c,v 1.5 1994/12/24 17:08:05 cgd Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: unexpand.c,v 1.2 1996/06/26 05:42:08 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: unexpand.c,v 1.3 1999/02/11 23:08:25 deraadt Exp $"; #endif /* not lint */ /* @@ -69,7 +69,7 @@ main(argc, argv) argc--, argv++; if (argc > 0 && argv[0][0] == '-') { if (strcmp(argv[0], "-a") != 0) { - fprintf(stderr, "usage: unexpand [ -a ] file ...\n"); + fprintf(stderr, "usage: unexpand [-a] [file ...]\n"); exit(1); } all++; |