summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Brefort <jean.brefort@normalesup.org>2005-09-12 11:36:27 +0000
committerJean Bréfort <jbrefort@src.gnome.org>2005-09-12 11:36:27 +0000
commit11d584b1eb19e8f83864d7aa958fd01d2f9352dd (patch)
tree3aeed3a25ed0fa932956e8ad433874340834a7ab
parentf297582b2fb8dd16aab3cfa655961165df071b8d (diff)
downloadpango-11d584b1eb19e8f83864d7aa958fd01d2f9352dd.tar.gz
Fixed typo (#316054).
2005-09-12 Jean Brefort <jean.brefort@normalesup.org> * pango/pango-attributes.c: (pango_attr_list_splice): Fixed typo (#316054).
-rw-r--r--ChangeLog5
-rw-r--r--pango/pango-attributes.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 89bb2bbc..f3e9e087 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-12 Jean Brefort <jean.brefort@normalesup.org>
+
+ * pango/pango-attributes.c: (pango_attr_list_splice): Fixed typo
+ (#316054).
+
2005-09-11 Matthias Clasen <mclasen@redhat.com>
* pango/pangocairo-fontmap.c (free_context_info): Use g_free()
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c
index d2fe3ce2..c4b8cd93 100644
--- a/pango/pango-attributes.c
+++ b/pango/pango-attributes.c
@@ -1403,7 +1403,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);
}