# HG changeset patch # User Matti Hamalainen # Date 1422425162 -7200 # Node ID 434c0eae87c9d6e4bda6cf50c8dd157c868ca781 # Parent 9bc7f60f3013cdc7f721a2a67ee69ab3a68e69ca Add '-' to allowed configuration key names. diff -r 9bc7f60f3013 -r 434c0eae87c9 th_config.c --- a/th_config.c Wed Jan 07 20:21:27 2015 +0200 +++ b/th_config.c Wed Jan 28 08:06:02 2015 +0200 @@ -327,7 +327,7 @@ parseMode = PM_NEXT; nextMode = PM_KEYSET; } - else if (th_isalnum(c) || c == '_') + else if (th_isalnum(c) || c == '_' || c == '-') { // Add to key name string VADDCH(c)