summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-30 22:23:36 +0100
committerBert <ber.t@gmx.com>2011-01-30 22:23:36 +0100
commitf0e9ec733ad73147be1db2a11486d1ac803c044f (patch)
tree4b0d761fae42cd1e5cb3e4d8e327fd8b5148f48c /options.c
parent3d8efb21d51b5e9582fdff1a7c138f85f508e927 (diff)
downloadnsxiv-f0e9ec733ad73147be1db2a11486d1ac803c044f.tar.zst
Replaced option -W with -q, seems more natural
Diffstat (limited to 'options.c')
-rw-r--r--options.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/options.c b/options.c
index 3a76120..a3f4143 100644
--- a/options.c
+++ b/options.c
@@ -29,7 +29,7 @@ options_t _options;
const options_t *options = (const options_t*) &_options;
void print_usage() {
- printf("usage: sxiv [-dfhpsvWZ] [-g GEOMETRY] [-z ZOOM] FILES...\n");
+ printf("usage: sxiv [-dfhpqsvZ] [-g GEOMETRY] [-z ZOOM] FILES...\n");
}
void print_version() {
@@ -48,9 +48,9 @@ void parse_options(int argc, char **argv) {
_options.fullscreen = 0;
_options.geometry = NULL;
- _options.warn = 0;
+ _options.quiet = 0;
- while ((opt = getopt(argc, argv, "dfg:hpsvWZz:")) != -1) {
+ while ((opt = getopt(argc, argv, "dfg:hpqsvZz:")) != -1) {
switch (opt) {
case '?':
print_usage();
@@ -70,15 +70,15 @@ void parse_options(int argc, char **argv) {
case 'p':
_options.aa = 0;
break;
+ case 'q':
+ _options.quiet = 1;
+ break;
case 's':
_options.scalemode = SCALE_FIT;
break;
case 'v':
print_version();
exit(0);
- case 'W':
- _options.warn = 1;
- break;
case 'Z':
_options.scalemode = SCALE_ZOOM;
_options.zoom = 1.0;