summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-02-17 23:35:59 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-02-17 23:35:59 +0000
commitea6d8462a10b165a7bf2a1d10af297f3f5efc13a (patch)
tree466f32f137282a7a26920aecf555207df9ea9288
parent9c540e9bed0f97285962ee66df89229f06006415 (diff)
downloadpango-ea6d8462a10b165a7bf2a1d10af297f3f5efc13a.tar.gz
Bug 517083 – pango modules: wrong fallback adding code?
2008-02-17 Behdad Esfahbod <behdad@gnome.org> Bug 517083 – pango modules: wrong fallback adding code? * pango/modules.c (map_add_engine): Fix typo. svn path=/trunk/; revision=2569
-rw-r--r--ChangeLog6
-rw-r--r--pango/modules.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 432c4822..0a9f242a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-02-17 Behdad Esfahbod <behdad@gnome.org>
+ Bug 517083 – pango modules: wrong fallback adding code?
+
+ * pango/modules.c (map_add_engine): Fix typo.
+
+2008-02-17 Behdad Esfahbod <behdad@gnome.org>
+
* pango/pango-layout.c: Improve docs.
2008-02-15 Behdad Esfahbod <behdad@gnome.org>
diff --git a/pango/modules.c b/pango/modules.c
index 8fad375e..cd93e449 100644
--- a/pango/modules.c
+++ b/pango/modules.c
@@ -580,7 +580,7 @@ map_add_engine (PangoMapInfo *info,
if (is_exact)
entry->exact = g_slist_prepend (entry->exact, pair);
else
- entry->exact = g_slist_prepend (entry->fallback, pair);
+ entry->fallback = g_slist_prepend (entry->fallback, pair);
}
}