From fd7b2b9b33826fa41ca8359188f8bad0f258435d Mon Sep 17 00:00:00 2001 From: Bob Jamison Date: Fri, 7 Mar 2008 20:44:54 +0000 Subject: Update charclass.h/cpp to use complete Unicode character database (bzr r4984) --- src/dom/xmlreader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dom/xmlreader.cpp') diff --git a/src/dom/xmlreader.cpp b/src/dom/xmlreader.cpp index 6e6db723d..32a97e0c0 100644 --- a/src/dom/xmlreader.cpp +++ b/src/dom/xmlreader.cpp @@ -10,7 +10,7 @@ * Authors: * Bob Jamison * - * Copyright (C) 2005 Bob Jamison + * Copyright (C) 2005-2008 Bob Jamison * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -193,7 +193,7 @@ int XmlReader::skipwhite(int p) while (p < len) { int b = get(p); - if (!isWhitespace(b)) + if (!uni_is_space(b)) break; p++; } -- cgit v1.2.3