aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/imv.1.txt3
-rw-r--r--src/imv.c3
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.
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"