From cf9d44c326f323486c56e4167bd6a16bce66ed1b Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 15 Oct 2015 01:05:42 +0200 Subject: [PATCH] Remove obsolete comment Multi-line support is now expected to be handled by the application, for the variables requiring it. The String class can be leveraged for this purpose. --- src/config.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/config.c b/src/config.c index 4e65550..001c803 100644 --- a/src/config.c +++ b/src/config.c @@ -213,7 +213,6 @@ int config_load(Config * config, char const * filename) if((fp = fopen(filename, "r")) == NULL) return error_set_code(1, "%s: %s", filename, strerror(errno)); - /* FIXME unescape backslashes (eg allow multiple lines) */ for(line = 0; (c = fgetc(fp)) != EOF; line++) if(c == CONFIG_COMMENT) /* skip the comment */