switch -0 to bottom in options.c

This commit is contained in:
NRK 2021-09-22 02:33:50 +06:00 committed by Berke Kocaoğlu
parent 09d4b70349
commit 915a7fd384
1 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@ const opt_t *options = (const opt_t*) &_options;
void print_usage(void) 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] " "[-g GEOMETRY] [-N NAME] [-T TITLE] [-n NUM] [-S DELAY] [-s MODE] "
"[-z ZOOM] FILES...\n"); "[-z ZOOM] FILES...\n");
} }
@ -76,7 +76,7 @@ void parse_options(int argc, char **argv)
_options.clean_cache = false; _options.clean_cache = false;
_options.private_mode = 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) { switch (opt) {
case '?': case '?':
print_usage(); print_usage();
@ -129,10 +129,6 @@ void parse_options(int argc, char **argv)
case 'N': case 'N':
_options.res_name = optarg; _options.res_name = optarg;
break; break;
case '0':
_options.stdout_separator = '\0';
/* -0 implies -o */
/* fall through */
case 'o': case 'o':
_options.to_stdout = true; _options.to_stdout = true;
break; break;
@ -184,6 +180,10 @@ void parse_options(int argc, char **argv)
_options.scalemode = SCALE_ZOOM; _options.scalemode = SCALE_ZOOM;
_options.zoom = (float) n / 100.0; _options.zoom = (float) n / 100.0;
break; break;
case '0':
_options.stdout_separator = '\0';
_options.to_stdout = true; /* -0 implies -o */
break;
} }
} }