summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Brefort <jean.brefort@normalesup.org>2005-09-12 11:36:23 +0000
committerJean Bréfort <jbrefort@src.gnome.org>2005-09-12 11:36:23 +0000
commit4c94102c7b9ecf71eedfd459139d657ac769e899 (patch)
tree50647a3ccd625ec579daed3fdd4cdfcc14b4b419
parentc59fcf4bf2b69e3d2d377fc530a5222cffb4c5ee (diff)
downloadpango-4c94102c7b9ecf71eedfd459139d657ac769e899.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 14d24dd8..5f905ae7 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);
}