Code

more correct whitespace handling per http://www.w3.org/TR/SVG11/text.html#WhiteSpace...
authorbuliabyak <buliabyak@users.sourceforge.net>
Sat, 10 Feb 2007 20:39:52 +0000 (20:39 +0000)
committerbuliabyak <buliabyak@users.sourceforge.net>
Sat, 10 Feb 2007 20:39:52 +0000 (20:39 +0000)
src/sp-string.cpp

index ddea5abc7ed60bb1b0cdda4abdf8cfb5b6ef2c2b..871338ad599ef44c0990f42b462182863cad18c3 100644 (file)
@@ -121,7 +121,7 @@ sp_string_read_content(SPObject *object)
     if (object->xml_space.value == SP_XML_SPACE_PRESERVE) {
         for ( ; *xml_string ; xml_string = g_utf8_next_char(xml_string) ) {
             gunichar c = g_utf8_get_char(xml_string);
-            if (c == '\n' || c == '\t') c = ' ';
+            if (c == 0xa || c == 0xd || c == '\t') c = ' ';
             string->string += c;
         }
     }
@@ -129,7 +129,7 @@ sp_string_read_content(SPObject *object)
         bool whitespace = false;
         for ( ; *xml_string ; xml_string = g_utf8_next_char(xml_string) ) {
             gunichar c = g_utf8_get_char(xml_string);
-            if (c == '\n') continue;
+            if (c == 0xa || c == 0xd) continue;
             if (c == ' ' || c == '\t') whitespace = true;
             else {
                 if (whitespace && (!string->string.empty() || SP_OBJECT_PREV(object) != NULL))