Clean debug logs before rc1.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26033 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-08-02 14:11:04 +00:00
parent f1a783f939
commit 97812e8718

View File

@ -1813,12 +1813,12 @@ MathCompletionList::MathCompletionList(Cursor const & cur)
// fill in global macros
macros.clear();
MacroTable::globalMacros().getMacroNames(macros);
lyxerr << "Globals completion macros: ";
//lyxerr << "Globals completion macros: ";
for (it = macros.begin(); it != macros.end(); ++it) {
lyxerr << "\\" + *it << " ";
//lyxerr << "\\" + *it << " ";
globals.push_back("\\" + *it);
}
lyxerr << std::endl;
//lyxerr << std::endl;
// fill in global commands
globals.push_back(from_ascii("\\boxed"));
@ -1868,12 +1868,12 @@ MathCompletionList::MathCompletionList(Cursor const & cur)
globals.push_back(from_ascii("\\vphantom"));
MathWordList const & words = mathedWordList();
MathWordList::const_iterator it2;
lyxerr << "Globals completion commands: ";
//lyxerr << "Globals completion commands: ";
for (it2 = words.begin(); it2 != words.end(); ++it2) {
globals.push_back("\\" + (*it2).first);
lyxerr << "\\" + (*it2).first << " ";
//lyxerr << "\\" + (*it2).first << " ";
}
lyxerr << std::endl;
//lyxerr << std::endl;
sort(globals.begin(), globals.end());
}