diff --git a/core/printOrange.m b/core/printOrange.m index e101a92a..b31b5639 100755 --- a/core/printOrange.m +++ b/core/printOrange.m @@ -19,6 +19,6 @@ sz = get(0, 'CommandWindowSize'); orangeString = textwrap({orangeString},sz(1)); orangeString = strjoin(orangeString,'\n'); - fprintf(orangeString) + fprintf(orangeString); end end diff --git a/doc/core/printOrange.html b/doc/core/printOrange.html index 9a43d19a..20753a03 100644 --- a/doc/core/printOrange.html +++ b/doc/core/printOrange.html @@ -70,7 +70,7 @@

SOURCE CODE ^'CommandWindowSize'); 0020 orangeString = textwrap({orangeString},sz(1)); 0021 orangeString = strjoin(orangeString,'\n'); -0022 fprintf(orangeString) +0022 fprintf(orangeString); 0023 end 0024 end
Generated by m2html © 2005
diff --git a/doc/io/exportModel.html b/doc/io/exportModel.html index 38ef2bf7..aa5fbcb4 100644 --- a/doc/io/exportModel.html +++ b/doc/io/exportModel.html @@ -175,7 +175,7 @@

SOURCE CODE ^%Check the model structure 0111 if supressWarnings==false -0112 checkModelStruct(model); +0112 checkModelStruct(model,false); 0113 end 0114 0115 %Add several blank fields, if they do not exist already. This is to reduce diff --git a/io/exportModel.m b/io/exportModel.m index 85b5d421..7ee8bf06 100755 --- a/io/exportModel.m +++ b/io/exportModel.m @@ -109,7 +109,7 @@ function exportModel(model,fileName,COBRAstyle,supressWarnings,sortIds) %Check the model structure if supressWarnings==false - checkModelStruct(model); + checkModelStruct(model,false); end %Add several blank fields, if they do not exist already. This is to reduce