From de30297b70cb10e8f78c721c3b204e0fa3960ac7 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 22 Jun 2021 18:33:48 +0000 Subject: [PATCH] Reduce verbosity in tset/reset usage() from jmc, ok kn --- usr.bin/tset/tset.c | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/usr.bin/tset/tset.c b/usr.bin/tset/tset.c index c6c2e84dfc0..1ea5f876747 100644 --- a/usr.bin/tset/tset.c +++ b/usr.bin/tset/tset.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tset.c,v 1.42 2021/06/22 18:32:24 tb Exp $ */ +/* $OpenBSD: tset.c,v 1.43 2021/06/22 18:33:48 tb Exp $ */ /**************************************************************************** * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. * @@ -1094,28 +1094,9 @@ obsolete(char **argv) static void usage(void) { - static const char *tbl[] = - { - "" - ,"Options:" - ," -c set control characters" - ," -e ch erase character" - ," -I no initialization strings" - ," -i ch interrupt character" - ," -k ch kill character" - ," -m mapping map identifier to type" - ," -Q do not output control key settings" - ," -r display term on stderr" - ," -s output TERM set command" - ," -V print curses-version" - ," -w set window-size" - }; - unsigned n; - (void) fprintf(stderr, "Usage: %s [-cIQqrsVw] [-] " - "[-e ch] [-i ch] [-k ch] [-m mapping] [terminal]\n", + (void) fprintf(stderr, "usage: %s [-cIQqrsVw] [-] " + "[-e ch] [-i ch] [-k ch] [-m mapping] [terminal]", _nc_progname); - for (n = 0; n < sizeof(tbl) / sizeof(tbl[0]); ++n) - fprintf(stderr, "%s\n", tbl[n]); exit_error(); /* NOTREACHED */ -- 2.20.1