=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/fmt/fmt.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- src/usr.bin/fmt/fmt.c 2006/11/29 20:09:27 1.24 +++ src/usr.bin/fmt/fmt.c 2006/11/29 21:59:04 1.25 @@ -1,4 +1,4 @@ -/* $OpenBSD: fmt.c,v 1.24 2006/11/29 20:09:27 jmc Exp $ */ +/* $OpenBSD: fmt.c,v 1.25 2006/11/29 21:59:04 jmc Exp $ */ /* Sensible version of fmt * @@ -170,7 +170,7 @@ #ifndef lint static const char rcsid[] = - "$OpenBSD: fmt.c,v 1.24 2006/11/29 20:09:27 jmc Exp $"; + "$OpenBSD: fmt.c,v 1.25 2006/11/29 21:59:04 jmc Exp $"; static const char copyright[] = "Copyright (c) 1997 Gareth McCaughan. All rights reserved.\n"; #endif /* not lint */ @@ -711,17 +711,8 @@ extern char *__progname; fprintf(stderr, - "Usage: %s [-cmnps] [-d chars] [-l number] [-t number]\n" - " [goal [maximum] | -width | -w width] [file ...]\n" - "Options: -c center each line instead of formatting\n" - " -d double-space after at line end\n" - " -l turn each spaces at start of line into a tab\n" - " -m try to make sure mail header lines stay separate\n" - " -n format lines beginning with a dot\n" - " -p allow indented paragraphs\n" - " -s coalesce whitespace inside lines\n" - " -t have tabs every columns\n" - " -w set maximum width to \n" - " goal set target width to goal\n", __progname); + "usage: %s [-cmnps] [-d chars] [-l number] [-t number]\n" + "\t[goal [maximum] | -width | -w width] [file ...]\n", + __progname); exit (1); }