do not include \key\value pairs in the output of Info_MakeString for

backwards compatability with the old info key system.
This commit is contained in:
Bill Currie 2001-11-05 01:29:45 +00:00
parent bf4570de72
commit 9829cf3993

View file

@ -253,6 +253,8 @@ Info_MakeString (info_t *info, int (*filter)(const char *))
key_list = (info_key_t **)Hash_GetList (info->tab);
for (key = key_list; *key; key++) {
if (!*(*key)->value)
continue;
if (filter && filter ((*key)->key))
continue;
*d++ = '\\';