From f483f1f137cc92d744128b947368532f11d75f7e Mon Sep 17 00:00:00 2001 From: Lucas Dohmen Date: Sun, 24 Mar 2013 16:25:37 +0100 Subject: [PATCH] Fixed fn command --- Documentation/Scripts/js2doxy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Documentation/Scripts/js2doxy.py b/Documentation/Scripts/js2doxy.py index 192e2c07ba..1db56485e3 100644 --- a/Documentation/Scripts/js2doxy.py +++ b/Documentation/Scripts/js2doxy.py @@ -75,7 +75,10 @@ for line in f: if m: if not comment and not other: - print "void dummy_%d ();\n" % count + if fn: + print "void %s ();\n" % fn + else: + print "void dummy_%d ();\n" % count print "%s" % line