summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-02-17 23:36:37 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-02-17 23:36:37 +0000
commit6a102fbaaa22af0387258c361c11f4843083764d (patch)
treeae507c69a0019a965cc8a4d2f38b88336dad28a9
parent306f6559bddb47b68a8b27285f6d84139890f6ce (diff)
downloadpango-6a102fbaaa22af0387258c361c11f4843083764d.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=/branches/pango-1-18/; revision=2570
-rw-r--r--ChangeLog6
-rw-r--r--pango/modules.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1676bbdd..74430dce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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-08 Behdad Esfahbod <behdad@gnome.org>
Bug 504810 – Samvruthokaram (combination of U+0D41 and U+0D4D) is not
diff --git a/pango/modules.c b/pango/modules.c
index 5a9d6883..02c02294 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);
}
}