aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/main.c b/main.c
index 6d4bd345e..cfa1151d9 100644
--- a/main.c
+++ b/main.c
@@ -59,7 +59,14 @@ main(int argc, const char *argv[])
options = options_init();
/* read configuration */
- read_rc_file(NULL, options);
+ read_configuration(options);
+
+ /* check key bindings */
+ if( check_key_bindings() )
+ {
+ fprintf(stderr, "Confusing key bindings - exiting!\n");
+ exit(EXIT_FAILURE);
+ }
/* parse command line options */
options_parse(argc, argv);