diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-04-14 11:09:41 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-04-14 11:09:41 -0400 |
commit | 8197b4d1721d905f1cda3207494df525be112f5d (patch) | |
tree | 49f25c5b99624cbdd4a5ac69641fa2c739cd9430 | |
parent | 2fc08eeb9daeabd9fbac1e8ae409581117601bb5 (diff) | |
download | pango-8197b4d1721d905f1cda3207494df525be112f5d.tar.gz |
Bug 578935 – Syntax error (missing semicolon) in pango/pangowin32-fontmap.c
Add missing semicolon.
-rw-r--r-- | NEWS | 19 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | docs/tmpl/pangofc-font.sgml | 5 | ||||
-rw-r--r-- | pango/pangowin32-fontmap.c | 2 |
4 files changed, 22 insertions, 8 deletions
@@ -1,3 +1,22 @@ +Overview of changes between 1.24.0 and 1.24.1 +============================================= +- Fix a couple of crashers +- Fix minor pangofc API semantics breakage +- Better handle SFNT fonts in dfont containers +- Improved docs +- Improved Indic shaper for new Unicode 5.1 characters +- Misc bug fixes +- Bugs fixed in this release: + + Bug 577952 – Error loading {GDEF,GSUB,GPOS} table 0x6EAD + Bug 578336 – ABI breakage from 1.22 to 1.24 in fontmap field + of PangoFcFont + Bug 556132 – gnome-panel crashed with SIGSEGV in + g_cclosure_marshal_VOID__BOXED() + Bug 571291 – Unicode 5.1 support in pango - Indic Lanuages + Bug 576298 – Fails to link pango-view if --without-x is specified + but cairo has X11 support + Overview of changes between 1.23.0 and 1.24.0 ============================================= - pango-view improvements: diff --git a/configure.in b/configure.in index 05fb6911..53df474d 100644 --- a/configure.in +++ b/configure.in @@ -22,14 +22,14 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [24]) -m4_define([pango_version_micro], [0]) +m4_define([pango_version_micro], [1]) m4_define([pango_version], [pango_version_major.pango_version_minor.pango_version_micro]) dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2. m4_define([pango_api_version], [1.0]) dnl Number of releases since we've added interfaces dnl XXX For 1.25 release simply remove it and make it automatic. -m4_define([pango_interface_age], [0]) +m4_define([pango_interface_age], [1]) dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) diff --git a/docs/tmpl/pangofc-font.sgml b/docs/tmpl/pangofc-font.sgml index a1b055c2..95ac1dd3 100644 --- a/docs/tmpl/pangofc-font.sgml +++ b/docs/tmpl/pangofc-font.sgml @@ -40,11 +40,6 @@ Fontconfig-based backend involves deriving from both </para> -<!-- ##### ARG PangoFcFont:fontmap ##### --> -<para> - -</para> - <!-- ##### ARG PangoFcFont:pattern ##### --> <para> diff --git a/pango/pangowin32-fontmap.c b/pango/pangowin32-fontmap.c index 360ec03f..b92c9775 100644 --- a/pango/pangowin32-fontmap.c +++ b/pango/pangowin32-fontmap.c @@ -624,7 +624,7 @@ pango_win32_font_map_load_font (PangoFontMap *fontmap, family = pango_font_description_get_family (description); family = family ? family : ""; - PING (("name=%s", family)) + PING (("name=%s", family)); win32family = g_hash_table_lookup (win32fontmap->families, family); if (win32family) |