[EMAIL PROTECTED] wrote:
Author: sanda
Date: Sat Aug  2 16:11:04 2008
New Revision: 26033

URL: http://www.lyx.org/trac/changeset/26033
Log:
Clean debug logs before rc1.

Might it be better to do these as LYXERR(Debug::MATHED) rather than to comment them out?

rh

Modified:
    lyx-devel/trunk/src/mathed/InsetMathNest.cpp

Modified: lyx-devel/trunk/src/mathed/InsetMathNest.cpp
URL: 
http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.cpp?rev=26033
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathNest.cpp (original)
+++ lyx-devel/trunk/src/mathed/InsetMathNest.cpp Sat Aug  2 16:11:04 2008
@@ -1813,12 +1813,12 @@
        // 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 @@
        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 << std::endl;
+               //lyxerr << "\\" + (*it2).first << " ";
+       }
+       //lyxerr << std::endl;
        sort(globals.begin(), globals.end());
 }

_______________________________________________
Cvslog mailing list
[EMAIL PROTECTED]
http://www.lyx.org/mailman/listinfo/cvslog

Reply via email to