summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-02-28 17:56:13 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-02-28 17:56:13 +0100
commite6a535093596d3732628b8114386eb9b72929a02 (patch)
tree09279aaf64051767df0880faaaf22636856770eb /src/options.c
parent8eaa39234a54fcdd3c9050a01790b152598af80d (diff)
parent5a2db8f2ffc4371d2e88a65567d85663e6d16b36 (diff)
Merge branch 'ulteq-natural-sort'
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c
index 0ad7c74..3d11482 100644
--- a/src/options.c
+++ b/src/options.c
@@ -415,6 +415,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
{"insecure" , 0, 0, 240},
{"no-recursive" , 0, 0, 241},
{"cache-size" , 1, 0, 243},
+ {"version-sort" , 0, 0, 246},
{0, 0, 0, 0}
};
int optch = 0, cmdx = 0;
@@ -780,6 +781,9 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)
if (opt.cache_size > 2048)
opt.cache_size = 2048;
break;
+ case 246:
+ opt.version_sort = 1;
+ break;
default:
break;
}