Noise not needed anymore
-- 
Those who desire to give up Freedom in order to gain Security, will not have,
nor do they deserve, either one.     (T. Jefferson or B. Franklin or both...)
? 1.diff
? 2.diff
? 3.diff
? fullredraw.diff
? par-row.diff
? qfont_loader.tar.bz2
? search.diff
? tabular-il.diff
? textcache.diff
? tmp.diff
? vspace.diff
? frontends/xforms/1.diff
? insets/1.diff
? mathed/1.diff
? mathed/cursor.diff
? support/1.diff
Index: BufferView_pimpl.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/BufferView_pimpl.C,v
retrieving revision 1.501
diff -u -p -r1.501 BufferView_pimpl.C
--- BufferView_pimpl.C  4 Feb 2004 11:23:23 -0000       1.501
+++ BufferView_pimpl.C  6 Feb 2004 09:30:50 -0000
@@ -888,7 +888,7 @@ bool BufferView::Pimpl::workAreaDispatch
        //
        FuncRequest cmd = cmd0;
        cmd.y += bv_->top_y();
-       lyxerr << "*** workAreaDispatch: request: " << cmd << std::endl;
+       //lyxerr << "*** workAreaDispatch: request: " << cmd << std::endl;
        LCursor cur(*bv_);
        switch (cmd.action) {
 #if 0
@@ -967,8 +967,7 @@ bool BufferView::Pimpl::workAreaDispatch
        }
 
        default:
-               lyxerr << "*** UNDISPATCHED: " << cmd;
-               //owner_->dispatch(cmd);
+               BOOST_ASSERT(false);
        }
        return true;
 }
Index: cursor.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/cursor.C,v
retrieving revision 1.49
diff -u -p -r1.49 cursor.C
--- cursor.C    4 Feb 2004 12:24:01 -0000       1.49
+++ cursor.C    6 Feb 2004 09:30:50 -0000
@@ -77,7 +77,7 @@ void LCursor::reset()
 
 DispatchResult LCursor::dispatch(FuncRequest const & cmd0)
 {
-       //lyxerr << "\nLCursor::dispatch: cmd: " << cmd0 << endl << *this << endl;
+       lyxerr << "\nLCursor::dispatch: cmd: " << cmd0 << endl << *this << endl;
        FuncRequest cmd = cmd0;
        for (current_ = cursor_.size() - 1; current_ >= 1; --current_) {
                lyxerr << "trying to dispatch to inset " << inset() << endl;
@@ -108,8 +108,8 @@ DispatchResult LCursor::dispatch(FuncReq
                }
        }
        BOOST_ASSERT(current_ == 0);
-       lyxerr << "trying to dispatch to main text " << bv_->text()
-               << " with cursor: " << *this << endl;
+       //lyxerr << "trying to dispatch to main text " << bv_->text()
+       //      << " with cursor: " << *this << endl;
        DispatchResult res = bv_->text()->dispatch(*this, cmd);
        //lyxerr << "   result: " << res.val() << endl;
        return res;
Index: lyxfunc.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/lyxfunc.C,v
retrieving revision 1.568
diff -u -p -r1.568 lyxfunc.C
--- lyxfunc.C   3 Feb 2004 14:28:59 -0000       1.568
+++ lyxfunc.C   6 Feb 2004 09:30:51 -0000
@@ -246,10 +246,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr
 
        if (func.action == LFUN_SELFINSERT) {
                if (encoded_last_key != 0) {
-                       string arg;
-                       arg += encoded_last_key;
-                       lyxerr << "SelfInsert arg[`"
-                                  << arg << "']" << endl;
+                       string arg(1, encoded_last_key);
                        dispatch(FuncRequest(LFUN_SELFINSERT, arg));
                        lyxerr[Debug::KEY]
                                << "SelfInsert arg[`" << arg << "']" << endl;
Index: rowpainter.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/rowpainter.C,v
retrieving revision 1.113
diff -u -p -r1.113 rowpainter.C
--- rowpainter.C        2 Feb 2004 17:32:55 -0000       1.113
+++ rowpainter.C        6 Feb 2004 09:30:51 -0000
@@ -890,7 +890,7 @@ int paintText(BufferView const & bv)
        ParagraphList::iterator pit;
        bv.text()->updateParPositions();
        bv.text()->getRowNearY(0, pit);
-       lyxerr << "top_y: " << bv.top_y() << " y: " << pit->y << endl;
+       //lyxerr << "top_y: " << bv.top_y() << " y: " << pit->y << endl;
        return paintPars(bv, *bv.text(), pit, 0, 0, pit->y);
 }
 
Index: insets/insetcollapsable.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetcollapsable.C,v
retrieving revision 1.232
diff -u -p -r1.232 insetcollapsable.C
--- insets/insetcollapsable.C   4 Feb 2004 09:14:27 -0000       1.232
+++ insets/insetcollapsable.C   6 Feb 2004 09:30:51 -0000
@@ -317,8 +317,8 @@ void InsetCollapsable::edit(LCursor & cu
 DispatchResult
 InsetCollapsable::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
 {
-       lyxerr << "\nInsetCollapsable::priv_dispatch (begin): cmd: " << cmd
-               << "  button y: " << button_dim.y2 << endl;
+       //lyxerr << "\nInsetCollapsable::priv_dispatch (begin): cmd: " << cmd
+       //      << "  button y: " << button_dim.y2 << endl;
        switch (cmd.action) {
                case LFUN_MOUSE_PRESS:
                        if (status_ == Inlined)
Index: insets/insetert.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetert.C,v
retrieving revision 1.188
diff -u -p -r1.188 insetert.C
--- insets/insetert.C   3 Feb 2004 16:44:57 -0000       1.188
+++ insets/insetert.C   6 Feb 2004 09:30:51 -0000
@@ -210,7 +210,7 @@ int InsetERT::docbook(Buffer const &, os
 
 DispatchResult InsetERT::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
 {
-       lyxerr << "\nInsetERT::priv_dispatch (begin): cmd: " << cmd << endl;
+       //lyxerr << "\nInsetERT::priv_dispatch (begin): cmd: " << cmd << endl;
        switch (cmd.action) {
 
        case LFUN_INSET_MODIFY: {

Reply via email to