summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-08-29 22:39:49 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-08-29 22:39:57 +0200
commit6206ca48113d6790e5681d98ef2b89fd2a1d44da (patch)
treee273629e7f5e16704e9713076771f54eeda73051 /src/options.c
parent6476d7dc4e3acc63aeb57b6d89f50c9b44a2ec98 (diff)
Various code fixups
* remove unused variable Im1 in filelist.c * options are initialised as 0, so only explicitly set those to 0 for which it makes sense because of their context * Make a few warnings about wrong option combinations fatal
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/options.c b/src/options.c
index c5ed85d..fe0cf87 100644
--- a/src/options.c
+++ b/src/options.c
@@ -70,8 +70,6 @@ void init_parse_options(int argc, char **argv)
opt.prev_button = 4;
opt.next_button = 5;
- opt.draw_actions = 0;
-
opt.rotate_button = 2;
opt.no_rotate_ctrl_mask = 0;
opt.blur_button = 1;
@@ -80,7 +78,6 @@ void init_parse_options(int argc, char **argv)
opt.start_list_at = NULL;
opt.jump_on_resort = 1;
- opt.xinerama = 0;
opt.screen_clip = 1;
#ifdef HAVE_LIBXINERAMA
/* if we're using xinerama, then enable it by default */
@@ -823,15 +820,11 @@ static void check_options(void)
}
if (opt.full_screen && opt.multiwindow) {
- weprintf("you shouldn't combine multiwindow mode with full-screen mode,\n"
- " Multiwindow mode has been disabled.");
- opt.multiwindow = 0;
+ eprintf("You cannot combine --full-screen with --multiwindow");
}
if (opt.list && (opt.multiwindow || opt.index || opt.collage)) {
- weprintf("list mode can't be combined with other processing modes,\n"
- " list mode disabled.");
- opt.list = 0;
+ eprintf("You cannot combine --list with other modes");
}
if (opt.sort && opt.randomize) {
@@ -841,10 +834,7 @@ static void check_options(void)
}
if (opt.loadables && opt.unloadables) {
- weprintf("You cant show loadables AND unloadables...\n"
- "you might as well use ls ;)\n"
- "loadables only will be shown\n");
- opt.unloadables = 0;
+ eprintf("You cannot combine --loadable with --unloadable");
}
if (opt.thumb_title && (!opt.thumbs)) {