From 7da48b7de7c198cbbb19ed75203fa65a580ca88d Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 9 Sep 2007 08:16:24 +0000 Subject: [PATCH] XML only treats space, tab, carriage return, and line feed as whitespace characters. --- mxml-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxml-file.c b/mxml-file.c index d33ce49..1d6560b 100644 --- a/mxml-file.c +++ b/mxml-file.c @@ -136,7 +136,7 @@ static int mxml_get_entity(mxml_node_t *parent, void *p, static inline int mxml_isspace(int ch) { return (ch == ' ' || ch == '\t' || ch == '\r' || - ch == '\n' || ch == '\f' || ch == '\v'); + ch == '\n'); } static mxml_node_t *mxml_load_data(mxml_node_t *top, void *p, mxml_load_cb_t cb,