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. --- doc/imv.1.txt | 3 --- src/imv.c | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/doc/imv.1.txt b/doc/imv.1.txt index 2a33d68..6ea53ee 100644 --- a/doc/imv.1.txt +++ b/doc/imv.1.txt @@ -58,9 +58,6 @@ Options *-n* :: Start with the given path, or index selected. -*-e* :: - Set the overlay's font name. - *-b* :: Set the background colour. Can either be a 6-digit hexadecimal colour code or 'checks' to show a chequered background. 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