diff options
-rw-r--r-- | src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci | 6 |
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 |