From a95a6d623a5614b102b8c8d23f730dd531f2a3ca Mon Sep 17 00:00:00 2001 From: Simon Marchetto Date: Mon, 9 Sep 2013 18:07:59 +0200 Subject: [PATCH] Scilab: fix bug og generated line too long --- Source/Modules/scilab.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/scilab.cxx b/Source/Modules/scilab.cxx index 3b1540505..19108a6cb 100644 --- a/Source/Modules/scilab.cxx +++ b/Source/Modules/scilab.cxx @@ -533,7 +533,7 @@ public: Wrapper_print(getFunctionWrapper, wrappersSection); /* Add function to builder table */ - Printf(builderCode, "\"%s\",\"%s\";", getFunctionName, getFunctionName); + addFunctionInBuilder(getFunctionName, getFunctionName); /* Manage SET function */ if (is_assignable(node)) {