From 5ffe450e06ac5fef981585b720b399be1a2f65b2 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Thu, 30 Nov 2017 21:57:01 +0000 Subject: Remove overlay font command line arg Made irrelevant by the config option, why waste 'e' on it. --- src/imv.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/imv.c b/src/imv.c index 4f8c552..e892469 100644 --- a/src/imv.c +++ b/src/imv.c @@ -380,7 +380,7 @@ bool imv_parse_args(struct imv *imv, int argc, char **argv) int o; - while((o = getopt(argc, argv, "frdxhlu:s:n:b:e:t:")) != -1) { + while((o = getopt(argc, argv, "frdxhlu:s:n:b:t:")) != -1) { switch(o) { case 'f': imv->fullscreen = true; break; case 'r': imv->recursive_load = true; break; @@ -388,7 +388,6 @@ bool imv_parse_args(struct imv *imv, int argc, char **argv) case 'x': imv->loop_input = false; break; case 'l': imv->list_files_at_exit = true; break; case 'n': imv->starting_path = optarg; break; - case 'e': imv->font_name = strdup(optarg); break; case 'h': fprintf(stdout, "imv %s\n" -- cgit v1.2.3