Do not add <!-- --> when printing comments

---
 moo/mooutils/moomarkup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
This commit is contained in:
Yevgen Muntyan 2009-01-18 21:57:46 -06:00
parent 7ac21a7b24
commit 15c28447c4

View File

@ -644,7 +644,7 @@ moo_markup_comment_node_print (MooMarkupNode *node,
*p = 0;
}
g_string_append_printf (str, "<!--%s-->", text->text);
g_string_append (str, text->text);
}