summaryrefslogtreecommitdiff
path: root/src/Scilab2C
diff options
context:
space:
mode:
authorjofret2009-02-27 09:09:37 +0000
committerjofret2009-02-27 09:09:37 +0000
commitd412d119ea67f29369fc71061f3f6b3750a64126 (patch)
tree69f005c8ddf5115e5da18618b62710b0e98c13c3 /src/Scilab2C
parentd1cd335c163124e6eada5e0d5ef3219e190bf017 (diff)
downloadscilab2c-d412d119ea67f29369fc71061f3f6b3750a64126.tar.gz
scilab2c-d412d119ea67f29369fc71061f3f6b3750a64126.tar.bz2
scilab2c-d412d119ea67f29369fc71061f3f6b3750a64126.zip
Comment Line length check, must remove all call.
Diffstat (limited to 'src/Scilab2C')
-rw-r--r--src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci b/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci
index 882133a9..d74cf26b 100644
--- a/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci
+++ b/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci
@@ -22,8 +22,8 @@ function AST_CheckLineLength(instring)
// ------------------------------
SCI2CNInArgCheck(argn(2),1,1);
-if length(instring) > 77
- SCI2Cerror('Line too long: please reduce the length of the current line.');
-end
+//if length(instring) > 77
+// SCI2Cerror('Line too long: please reduce the length of the current line.');
+//end
endfunction