v4 matlab+preprocessor: fix display of preprocessor error message (was truncated by Matlab if too long)

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1774 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2008-04-02 15:01:52 +00:00
parent 5771aa9a1e
commit ea93fa36e8
2 changed files with 4 additions and 4 deletions

View File

@ -59,8 +59,8 @@ main(int argc, char** argv)
save_macro = true;
}
cout << "Starting Dynare ..." << endl;
cout << "Parsing your model file ..." << endl;
cout << "Starting Dynare ..." << endl
<< "Starting preprocessing of the model file ..." << endl;
// Construct basename (check file extension is correct then remove it)
string basename = argv[1];

View File

@ -43,6 +43,6 @@ main2(stringstream &in, string &basename, bool debug, bool clear_all)
delete mod_file;
cout << "Parsing done" << endl;
cout << "Starting Matlab computing ..." << endl;
cout << "Preprocessing completed." << endl
<< "Starting Matlab computing ..." << endl;
}