diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2008-02-17 23:35:59 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2008-02-17 23:35:59 +0000 |
commit | ea6d8462a10b165a7bf2a1d10af297f3f5efc13a (patch) | |
tree | 466f32f137282a7a26920aecf555207df9ea9288 /pango/modules.c | |
parent | 9c540e9bed0f97285962ee66df89229f06006415 (diff) | |
download | pango-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
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |