From 7b9881ebed0775feb65348a431139570e74ae7f9 Mon Sep 17 00:00:00 2001 From: Alban Browaeys Date: Tue, 10 Apr 2012 00:48:08 +0200 Subject: [PATCH] Codegen: fix comment line start leftover. Generated telepathy-glib/_gen/telepathy-enums-gtk-doc.h from: /usr/bin/python ../tools/c-constants-gen.py Tp _gen/stable-spec.xml _gen/telepathy-enums has incorrect comment. Fix it with the same remedy as in 5c58330c32f39a9dd6aaaef37f54461922cf6124 "many fixes to documentation comments" ie remove the newline between '*' and identifier. --- tools/c-constants-gen.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/c-constants-gen.py b/tools/c-constants-gen.py index c74d4fd..4cba640 100644 --- a/tools/c-constants-gen.py +++ b/tools/c-constants-gen.py @@ -101,8 +101,7 @@ extern "C" { enum.getAttribute('name') + 's' self.d("""\ /** - * -%s: + * %s: """ % (self.prefix + name).replace('_', '')) vals = get_by_path(enum, 'enumvalue') for val in vals: -- 1.7.9.5