From 9ab75e908a9930569d395b8701acf9b6b2dcd3c6 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Thu, 6 Sep 2007 06:47:13 +0000 Subject: Preserve paint styles with multiple components (bzr r3697) --- src/svg/svg-color.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp index 57003064a..9f7a5a87c 100644 --- a/src/svg/svg-color.cpp +++ b/src/svg/svg-color.cpp @@ -481,11 +481,13 @@ bool sp_svg_read_icc_color( gchar const *str, gchar const **end_ptr, SVGICCColor // Name must start with a certain type of character good = false; } else { - while ( g_ascii_isdigit(*str) || g_ascii_islower(*str) || (*str == '-') ) { + while ( g_ascii_isdigit(*str) || g_ascii_isalpha(*str) || (*str == '-') ) { if ( dest ) { dest->colorProfile += *str; } str++; + gboolean aa = g_ascii_isalpha(*str); + gboolean bb = aa; } while ( g_ascii_isspace(*str) || *str == ',' ) { str++; -- cgit v1.2.3