summaryrefslogtreecommitdiffstats
path: root/src/conf.c
diff options
context:
space:
mode:
authorPim Snel <pim@lingewoud.nl>2020-02-06 17:08:04 +0100
committerPim Snel <pim@lingewoud.nl>2020-02-06 17:08:04 +0100
commitb1d8c78564a9686164952e9a13c7899772c983fe (patch)
tree6577419fc8db2ae60b39be6469958e651a3cba11 /src/conf.c
parent40eb4492a7f2fd9cbccc147ba0a9322ca7b1e750 (diff)
fix segfault
Diffstat (limited to 'src/conf.c')
-rw-r--r--src/conf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf.c b/src/conf.c
index 056329e..5413f99 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -80,6 +80,7 @@ void store_default_config_values() {
put(user_conf_d, "ignorecase", "0");
put(user_conf_d, "trigger", "1");
put(user_conf_d, "version", "0");
+ put(user_conf_d, "help", "0");
#ifdef AUTOBACKUP
put(user_conf_d, "autobackup", "0"); // 0:noautobackup, n>0: backup every n in seconds
#endif