switch -0 to bottom in options.c

master
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)
{
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;
}
}