diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2017-11-30 21:57:01 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2017-11-30 21:57:01 +0000 |
commit | 5ffe450e06ac5fef981585b720b399be1a2f65b2 (patch) | |
tree | e7933e87b34d00c1b3e34dbe8bf0c3775e652442 | |
parent | 59c3ecd9c2af75b6404e2b4e52369c4b125f401e (diff) | |
download | imv-5ffe450e06ac5fef981585b720b399be1a2f65b2.tar.gz |
Remove overlay font command line arg
Made irrelevant by the config option, why waste 'e' on it.
-rw-r--r-- | doc/imv.1.txt | 3 | ||||
-rw-r--r-- | src/imv.c | 3 |
2 files changed, 1 insertions, 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* <path|index>:: Start with the given path, or index selected. -*-e* <font_name>:: - Set the overlay's font name. - *-b* <background>:: Set the background colour. Can either be a 6-digit hexadecimal colour code or 'checks' to show a chequered background. @@ -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" |