summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--tools/glib-gtypes-generator.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 71a1acd7f..0d8f96be3 100644
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,8 @@ Fixes:
• Make several methods returning a GStrv introspectable (fd.o #46471, Simon)
+• Fix warnings with newer gtk-doc and g-ir-scanner (fd.o #48592, Stef Walter)
+
telepathy-glib 0.18.0 (2012-04-02)
==================================
diff --git a/tools/glib-gtypes-generator.py b/tools/glib-gtypes-generator.py
index e5e62904a..21dfc6aa7 100644
--- a/tools/glib-gtypes-generator.py
+++ b/tools/glib-gtypes-generator.py
@@ -91,7 +91,7 @@ class GTypesGenerator(object):
docstring = get_docstring(mapping) or '(Undocumented)'
- self.d('/**\n * %s:\n *\n' % name)
+ self.d('/**\n * %s:\n *\n' % name.strip())
self.d(' * %s\n' % xml_escape(docstring))
self.d(' *\n')
self.d(' * This macro expands to a call to a function\n')