Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/vis Sort options in SYNOPSIS/usage.



details:   https://anonhg.NetBSD.org/src/rev/de8f9e0e3ebe
branches:  trunk
changeset: 332514:de8f9e0e3ebe
user:      wiz <wiz%NetBSD.org@localhost>
date:      Fri Sep 26 02:20:39 2014 +0000

description:
Sort options in SYNOPSIS/usage.

diffstat:

 usr.bin/vis/vis.1 |  4 ++--
 usr.bin/vis/vis.c |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r ea85c757bb21 -r de8f9e0e3ebe usr.bin/vis/vis.1
--- a/usr.bin/vis/vis.1 Fri Sep 26 02:18:57 2014 +0000
+++ b/usr.bin/vis/vis.1 Fri Sep 26 02:20:39 2014 +0000
@@ -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 -r ea85c757bb21 -r de8f9e0e3ebe usr.bin/vis/vis.c
--- a/usr.bin/vis/vis.c Fri Sep 26 02:18:57 2014 +0000
+++ b/usr.bin/vis/vis.c Fri Sep 26 02:20:39 2014 +0000
@@ -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 @@
 #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 @@
        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 @@
                case '?':
                default:
                        (void)fprintf(stderr, 
-                           "Usage: %s [-bcfhlmMnosStw] [-e extra]" 
+                           "Usage: %s [-bcfhlMmnoSstw] [-e extra]" 
                            " [-F foldwidth] [file ...]\n", getprogname());
                        return 1;
                }



Home | Main Index | Thread Index | Old Index