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/io/domstream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dom/io/domstream.cpp') diff --git a/src/dom/io/domstream.cpp b/src/dom/io/domstream.cpp index c35a3d148..9a3d49f15 100644 --- a/src/dom/io/domstream.cpp +++ b/src/dom/io/domstream.cpp @@ -10,7 +10,7 @@ * Authors: * Bob Jamison * - * Copyright (C) 2006 Bob Jamison + * Copyright (C) 2006-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 @@ -598,7 +598,7 @@ DOMString BasicReader::readWord() while (available() > 0) { XMLCh ch = get(); - if (isWhitespace(ch)) + if (uni_is_space(ch)) break; str.push_back(ch); } -- cgit v1.2.3