diff options
author | nutricato | 2009-02-25 16:33:58 +0000 |
---|---|---|
committer | nutricato | 2009-02-25 16:33:58 +0000 |
commit | 44b19f6c02e10bcded018b255b8b37ce01dca61f (patch) | |
tree | a43b9561bd7b65997fcf88ba1550dec46bfa83ad /src | |
parent | bc660e97e50b8fe1136d18d96c2a82860e492d3c (diff) | |
download | scilab2c-44b19f6c02e10bcded018b255b8b37ce01dca61f.tar.gz scilab2c-44b19f6c02e10bcded018b255b8b37ce01dca61f.tar.bz2 scilab2c-44b19f6c02e10bcded018b255b8b37ce01dca61f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/Scilab2C/Scilab2C/runscicode.sci | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Scilab2C/Scilab2C/runscicode.sci b/src/Scilab2C/Scilab2C/runscicode.sci index 28cee266..79184d1d 100644 --- a/src/Scilab2C/Scilab2C/runscicode.sci +++ b/src/Scilab2C/Scilab2C/runscicode.sci @@ -57,8 +57,7 @@ disp('--- Executing your SCILAB code. ---'); disp('-----------------------------------'); [tmppath,tmpfile,tmpext] = fileparts(UserScilabMainFile); cd(tmppath); -execstr(tmpfile); // BRUNO exec doesn't work here. It doesn't run the code -// execstr(tmpfile+tmpext); // BRUNO exec doesn't work here. It doesn't run the code +execstr(tmpfile); cd(RunSci2CMainDir); disp('------------------------------------------'); disp('--- End Execution of your SCILAB code. ---'); |