summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjofret2009-02-27 09:09:37 +0000
committerjofret2009-02-27 09:09:37 +0000
commit359bf46f59adeac7fffa8e4572046de91baebd20 (patch)
tree63399919812995023dd8ca126aa2b354d93b876a
parent0266b926b0315cd18e0bf7c7e2732e9a46fd4603 (diff)
downloadscilab2c-359bf46f59adeac7fffa8e4572046de91baebd20.tar.gz
scilab2c-359bf46f59adeac7fffa8e4572046de91baebd20.tar.bz2
scilab2c-359bf46f59adeac7fffa8e4572046de91baebd20.zip
Comment Line length check, must remove all call.
-rw-r--r--scilab2c/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci6
1 files changed, 3 insertions, 3 deletions
diff --git a/scilab2c/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci b/scilab2c/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci
index 882133a9..d74cf26b 100644
--- a/scilab2c/src/Scilab2C/Scilab2C/ASTManagement/AST_CheckLineLength.sci
+++ b/scilab2c/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