diff options
| author | wiz <wiz@NetBSD.org> | 2014-09-26 02:20:39 +0000 |
|---|---|---|
| committer | wiz <wiz@NetBSD.org> | 2014-09-26 02:20:39 +0000 |
| commit | 0ab07ab3e433fafc2c87a5add41b7508f895a6b9 (patch) | |
| tree | ab379074da4f3ac8f2f13ec88912ef7ccf5c8795 /usr.bin/vis | |
| parent | 8e1e44416eac7b40481737a40e8912780a0c4e2c (diff) | |
Sort options in SYNOPSIS/usage.
Diffstat (limited to 'usr.bin/vis')
| -rw-r--r-- | usr.bin/vis/vis.1 | 4 | ||||
| -rw-r--r-- | usr.bin/vis/vis.c | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/vis/vis.1 b/usr.bin/vis/vis.1 index 3ea80e1e859..4f4cc3913f2 100644 --- a/usr.bin/vis/vis.1 +++ b/usr.bin/vis/vis.1 @@ -1,4 +1,4 @@ -.\" $NetBSD: vis.1,v 1.21 2014/09/26 01:21:07 christos Exp $ +.\" $NetBSD: vis.1,v 1.22 2014/09/26 02:20:39 wiz Exp $ .\" .\" Copyright (c) 1989, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -37,7 +37,7 @@ .Nd display non-printable characters in a visual format .Sh SYNOPSIS .Nm -.Op Fl bcfhlmMnosStw +.Op Fl bcfhlMmnoSstw .Op Fl e Ar extra .Op Fl F Ar foldwidth .Op Ar file ... diff --git a/usr.bin/vis/vis.c b/usr.bin/vis/vis.c index f359dbf962e..6ecc06cb60e 100644 --- a/usr.bin/vis/vis.c +++ b/usr.bin/vis/vis.c @@ -1,4 +1,4 @@ -/* $NetBSD: vis.c,v 1.23 2014/09/26 01:21:07 christos Exp $ */ +/* $NetBSD: vis.c,v 1.24 2014/09/26 02:20:39 wiz Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\ #if 0 static char sccsid[] = "@(#)vis.c 8.1 (Berkeley) 6/6/93"; #endif -__RCSID("$NetBSD: vis.c,v 1.23 2014/09/26 01:21:07 christos Exp $"); +__RCSID("$NetBSD: vis.c,v 1.24 2014/09/26 02:20:39 wiz Exp $"); #endif /* not lint */ #include <stdio.h> @@ -70,7 +70,7 @@ main(int argc, char *argv[]) int ch; int rval; - while ((ch = getopt(argc, argv, "bcde:F:fhlmMnosStw")) != -1) + while ((ch = getopt(argc, argv, "bcde:F:fhlMmnoSstw")) != -1) switch((char)ch) { case 'b': eflags |= VIS_NOSLASH; @@ -131,7 +131,7 @@ main(int argc, char *argv[]) case '?': default: (void)fprintf(stderr, - "Usage: %s [-bcfhlmMnosStw] [-e extra]" + "Usage: %s [-bcfhlMmnoSstw] [-e extra]" " [-F foldwidth] [file ...]\n", getprogname()); return 1; } |
