diff options
author | Phil Jones <philj56@gmail.com> | 2022-06-25 17:52:24 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-06-25 17:52:24 +0100 |
commit | 60c0c650c67d727ff1fe9dd12df0baf56fd55045 (patch) | |
tree | deef67518828fa0a0d67552ad5c8357eb8626c1d /src | |
parent | fd1d7524b7a98fff762a5590e91496731474addb (diff) |
Add example themes and allow # in colors.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 4b20ab5..fc850e5 100644 --- a/src/config.c +++ b/src/config.c @@ -168,7 +168,7 @@ void config_load(struct tofi *tofi, const char *filename) num_errs++; continue; } - char *value = strtok_r(NULL, "#;\r\n", &saveptr2); + char *value = strtok_r(NULL, "\r\n", &saveptr2); if (!value) { PARSE_ERROR(filename, lineno, "Config option \"%s\" missing value.\n", option_stripped); num_errs++; |