summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
}