commit 9d2ff982c2c0a9b7ca96bb05416b4c0a92c8db18 Author: Matthias Clasen Date: Mon Sep 23 06:41:36 2013 -0400 1.36.0 NEWS | 7 +++++++ configure.ac | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) commit 6973d5223a3deafbf4f09074778e7d7d45e94463 Author: Behdad Esfahbod Date: Fri Sep 20 13:14:12 2013 -0400 Bug 708432 - gravity_map in fonts.c: "Upside-Down" should be PANGO_GRAVITY_NORTH instead of PANGO_GRAVITY_SOUTH? pango/fonts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 05fe0e7443026b8504da32fd8bc92433cacdb431 Author: Matthias Clasen Date: Tue Sep 10 17:34:04 2013 -0400 Correct an annotation The annotation for pango_layout_set_attributes should be 'transfer none', not 'transfer full'. Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=707874 pango/pango-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 114d5bfe9d54d1efabc233312d2c23267cf16f59 Author: Benjamin Otte Date: Mon Sep 9 17:12:50 2013 +0200 layout: Never return NULL from pango_layout_get_text() layouts get initialized with text == NULL as an optimization (avoid a malloc). But pango_layout_set_text (layout, NULL, 0); will set the text to "", so it is impossible to set a NULL text. Fxies crashers in various places that assume NULL return values never happen. https://bugzilla.gnome.org/show_bug.cgi?id=707659 pango/pango-layout.c | 5 +++++ 1 file changed, 5 insertions(+) commit 285be5bd7ee3ce87bb027b405be674d6f91995d1 Author: Jehan Date: Wed Sep 4 13:04:47 2013 +1200 Bug 707131 - removing useless test. Since pango_scan_int() would return FALSE if the scanned value was over INT_MAX; and the reference out value's type is an int, (n > INT_MAX) test is unecessary. If pango_scan_int() behavior was to be changed to accept long int, an explicit test should be added (or the PangoAttrSize type updated to handle long int too). pango/pango-markup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)