it has been removed for some reason.

Don't know if this is the correct place to put it though...

Alfredo
Index: BufferView_pimpl.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/BufferView_pimpl.C,v
retrieving revision 1.496
diff -u -p -u -r1.496 BufferView_pimpl.C
--- BufferView_pimpl.C	2 Feb 2004 17:32:54 -0000	1.496
+++ BufferView_pimpl.C	2 Feb 2004 20:19:20 -0000
@@ -1212,7 +1212,7 @@ bool BufferView::Pimpl::dispatch(FuncReq
 		break;
 
 	default:
-		return cur.dispatch(cmd).dispatched();
+		return false;
 	}
 
 	return true;
Index: lyxfunc.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/lyxfunc.C,v
retrieving revision 1.565
diff -u -p -u -r1.565 lyxfunc.C
--- lyxfunc.C	2 Feb 2004 11:07:50 -0000	1.565
+++ lyxfunc.C	2 Feb 2004 20:19:23 -0000
@@ -1438,7 +1438,9 @@ void LyXFunc::dispatch(FuncRequest const
 			break;
 
 		default:
-			view()->cursor().dispatch(cmd);
+			DispatchResult res = view()->cursor().dispatch(cmd);
+			if (!res.dispatched());
+				view()->dispatch(cmd);
 			break;
 		}
 	}

Reply via email to