summaryrefslogtreecommitdiff
path: root/pango/pango-attributes.c
diff options
context:
space:
mode:
authorMorten Welinder <terra@gnome.org>2005-09-14 17:13:31 +0000
committerMorten Welinder <mortenw@src.gnome.org>2005-09-14 17:13:31 +0000
commitbd8a710ee7fb4799626c663121e447a8d2285951 (patch)
tree5c81e389a4f5c21c56bfba598f6d3f262c5dd6a2 /pango/pango-attributes.c
parente6a44a353b49708e98e61343e503289229452eee (diff)
downloadpango-1-8.tar.gz
Apply fix for #316054 on this branch too.pango-1-8
2005-09-14 Morten Welinder <terra@gnome.org> * pango/pango-attributes.c (pango_attr_list_splice): Apply fix for #316054 on this branch too.
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r--pango/pango-attributes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c
index 5c1f5796..22fa749b 100644
--- a/pango/pango-attributes.c
+++ b/pango/pango-attributes.c
@@ -1399,7 +1399,7 @@ pango_attr_list_splice (PangoAttrList *list,
* an element could (in theory) suprise the caller, so
* we don't delete it.
*/
- attr->start_index = CLAMP_ADD (attr->end_index, ulen);
+ attr->start_index = CLAMP_ADD (attr->start_index, ulen);
attr->end_index = CLAMP_ADD (attr->end_index, ulen);
}