# HG changeset patch # User nadvornik # Date 1222723039 0 # Node ID 2a02fa29478bda4658e57d4e650a480d62c25132 # Parent 92defc61fa530d90c964a6a6334541eddda8f7f0 The comment section in the meta file is the last section. However it do not accept comment lines starting with a '['. This patch will fix that. - patch by Klaus Ethgen diff -r 92defc61fa53 -r 2a02fa29478b src/bar_info.c --- a/src/bar_info.c Mon Sep 29 21:09:48 2008 +0000 +++ b/src/bar_info.c Mon Sep 29 21:17:19 2008 +0000 @@ -147,7 +147,7 @@ gchar *ptr = s_buf; if (*ptr == '#') continue; - if (*ptr == '[') + if (*ptr == '[' && key != MK_COMMENT) { gchar *keystr = ++ptr;