diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-03-10 16:57:19 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-03-10 16:57:19 +0000 |
commit | df19b2f5a156b717186f8cbc6b1ad39d2401ab90 (patch) | |
tree | adcbef84798b47a7aad12a55221989cbd8ec5dc0 /pango/modules.c | |
parent | c01dbb8d33281a5cdea16525904ff28ca61620fd (diff) | |
download | pango-df19b2f5a156b717186f8cbc6b1ad39d2401ab90.tar.gz |
Release pango-0.8
Thu Mar 9 19:55:21 2000 Owen Taylor <otaylor@redhat.com>
* Release pango-0.8
* docs/TEXT/coding-style: Added some notes about coding style
within Pango.
* modules/*.[ch]: New version from Karl Koehler adding support
for vowels marks, better ligatures.
* docs/tmpl/*: Doc updates
* libpango/pango-layout.[ch] libpango/pangox/.[ch]: Add functions
for handling paragraphs as 2-D objects, not simple lists of lines,
to make things easier for people using pango-layout.
* examples/viewer.c: Simplify using the now 2-D layout-capabable
PangoLayout.
* libpango/fonts.c (pango_font_{get_coverage,find_shaper}): Allow
NULL language tag.
* libpango/modules.c (_pango_find_map): Fix for allowing
NULL language tag.
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 f2433ca8..fe8ef52d 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -76,7 +76,7 @@ _pango_find_map (const char *lang, if (!map) { PangoMapInfo *new_info = g_new (PangoMapInfo, 1); - new_info->lang = g_strdup (lang); + new_info->lang = g_strdup (map_info.lang); new_info->engine_type = g_strdup (engine_type); new_info->render_type = g_strdup (render_type); |