diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-13 13:51:24 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-02-13 13:51:24 +0100 |
commit | af9aca85c1b758276df5e0a5a7a136c111cc080b (patch) | |
tree | 2c8157e11ebf000fbdb8c1d2d7bc4d2fdcb63ce3 | |
parent | 85821865c9cc3824469d96a34f29b0983f8cfdc7 (diff) |
Remove --xinerama option, the next release will break option BC anyway
-rw-r--r-- | src/options.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/options.c b/src/options.c index 23df59f..1ca942a 100644 --- a/src/options.c +++ b/src/options.c @@ -400,7 +400,6 @@ feh_parse_option_array(int argc, char **argv) {"bg-seamless", 1, 0, 203}, {"menu-style", 1, 0, 204}, {"zoom", 1, 0, 205}, - {"xinerama", 1, 0, 206}, {"screen-clip", 1, 0, 207}, {"menu-border", 1, 0, 208}, {"caption-path", 1, 0, 209}, @@ -698,10 +697,6 @@ feh_parse_option_array(int argc, char **argv) case 205: opt.default_zoom = atoi(optarg); break; - case 206: - opt.xinerama = atoi(optarg); - weprintf("Option --xinerama is deprecated, use --no-xinerama (or nothing) instead"); - break; case 207: opt.screen_clip = atoi(optarg); break; |