[pango] Bug 578935 – Syntax error (missing semicolon) in pango/pangowin32-fontmap.c



commit 8197b4d1721d905f1cda3207494df525be112f5d
Author: Behdad Esfahbod <behdad behdad org>
Date:   Tue Apr 14 11:09:41 2009 -0400

    Bug 578935 â?? Syntax error (missing semicolon) in pango/pangowin32-fontmap.c
    
    Add missing semicolon.
---
 NEWS                        |   19 +++++++++++++++++++
 configure.in                |    4 ++--
 docs/tmpl/pangofc-font.sgml |    5 -----
 pango/pangowin32-fontmap.c  |    2 +-
 4 files changed, 22 insertions(+), 8 deletions(-)

diff --git a/NEWS b/NEWS
index 3829ad7..8c1a53b 100644
--- a/NEWS
+++ b/NEWS
@@ -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 05fb691..53df474 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 a1b055c..95ac1dd 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 360ec03..b92c977 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)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]