From 915a7fd384e700dff10f6014167764cd9812badd Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 22 Sep 2021 02:33:50 +0600 Subject: switch -0 to bottom in options.c --- options.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 3af5ca9..e8b82dd 100644 --- a/options.c +++ b/options.c @@ -31,7 +31,7 @@ const opt_t *options = (const opt_t*) &_options; void print_usage(void) { - printf("usage: nsxiv [-abcfhi0opqrtvZ] [-A FRAMERATE] [-e WID] [-G GAMMA] " + printf("usage: nsxiv [-abcfhiopqrtvZ0] [-A FRAMERATE] [-e WID] [-G GAMMA] " "[-g GEOMETRY] [-N NAME] [-T TITLE] [-n NUM] [-S DELAY] [-s MODE] " "[-z ZOOM] FILES...\n"); } @@ -76,7 +76,7 @@ void parse_options(int argc, char **argv) _options.clean_cache = false; _options.private_mode = false; - while ((opt = getopt(argc, argv, "A:abce:fG:g:hin:N:0opqrS:s:T:tvZz:")) != -1) { + while ((opt = getopt(argc, argv, "A:abce:fG:g:hin:N:opqrS:s:T:tvZz:0")) != -1) { switch (opt) { case '?': print_usage(); @@ -129,10 +129,6 @@ void parse_options(int argc, char **argv) case 'N': _options.res_name = optarg; break; - case '0': - _options.stdout_separator = '\0'; - /* -0 implies -o */ - /* fall through */ case 'o': _options.to_stdout = true; break; @@ -184,6 +180,10 @@ void parse_options(int argc, char **argv) _options.scalemode = SCALE_ZOOM; _options.zoom = (float) n / 100.0; break; + case '0': + _options.stdout_separator = '\0'; + _options.to_stdout = true; /* -0 implies -o */ + break; } } -- cgit v1.2.3-54-g00ecf