From ab604b7d1648d00eed554ee9e861fbea7e57822f Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Mon, 12 Nov 2012 16:34:18 +0100 Subject: [PATCH] console => nodisplay (Completes ticket #282) --- ModFile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index 3f6b4a42..b1676b05 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -475,7 +475,8 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all, bool no_log, b << "diary(logname_)" << endl; if (console) - mOutputFile << "options_.console_mode = 1;" << endl; + mOutputFile << "options_.console_mode = 1;" << endl + << "options_.nodisplay = 1;" << endl; cout << "Processing outputs ...";