diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc index 3e70440f7..b1a747c97 100644 --- a/preprocessor/ModFile.cc +++ b/preprocessor/ModFile.cc @@ -443,11 +443,9 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all, bool console, if (clear_all) { - mOutputFile << "if exist('OCTAVE_VERSION')" << endl - << " clear -all" << endl - << "else" << endl - << " clear all" << endl - << "end" << endl; + mOutputFile << "clear all" << endl + // this is a work-around for a bug in Octave 3.2 + << "clear globals" << endl; } mOutputFile << "tic;" << endl