diff options
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r-- | pango/pango-attributes.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c index 13468963..cfaf9b17 100644 --- a/pango/pango-attributes.c +++ b/pango/pango-attributes.c @@ -2802,7 +2802,7 @@ pango_attr_list_from_string (const char *text) p = endp + strspn (endp, " "); - endp = (char *)strpbrk (p, " "); + endp = (char *)p + strcspn (p, " "); attr_type = get_attr_type_by_nick (p, endp - p); p = endp + strspn (endp, " "); @@ -2929,8 +2929,7 @@ pango_attr_list_from_string (const char *text) break; case PANGO_ATTR_SHAPE: - endp = (char *)strpbrk (p, ",\n"); - p = endp + strspn (endp, " "); + endp = (char *)p + strcspn (p, ",\n"); continue; /* FIXME */ case PANGO_ATTR_SCALE: |