fixed "clear global" for Octave

issue#70
Michel Juillard 2011-11-22 22:09:13 +01:00
parent c9509817f0
commit 411a7fa683
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all, bool console,
{
mOutputFile << "clear all" << endl
// this is a work-around for a bug in Octave 3.2
<< "clear globals" << endl;
<< "clear global" << endl;
}
mOutputFile << "tic;" << endl