On Sat, Mar 27, 2004 at 12:56:03AM +0100, Alfredo Braunstein wrote: > > Missing insetiterator.C? > > No, just DocIterator::forwardInset in dociterator.C.
void DocumentIterator::forwardInset() { forwardPos(); while (!empty() && (pos() == lastpos() || nextInset() == 0)) forwardPos(); } This is inefficient for texted as it iterates over all possible cursor positions and checks whether there is an inset there. It should be more efficient to use the insetlist somehow. > I suppose Andre' has it in his tree ("seems to work")... I really don't like the current situation where I can't even run a 'cvs up' properly, let alone 'diff' or 'commit'. Is there any other means to access LyX CVS apart from the usual? [I could probably ssh to baywatch, cvs co a local copy and work from there, but that's neither nice, nor fast, nor cheap...] Andre'