>>>>> "U" == U Günther <[EMAIL PROTECTED]> writes:

U> I would like to request a soon pre-release or path with 1) the
U> X-paste bug from 1.1.4fix3 fixed

What bug is that?

U> 2) the "paste more than one paragraph" bug in 1.1.5pre1 fixed.

I guess this will appear next week when Lars comes back from vacation.
In the meantime, apply the appended patch.

JMarc

Index: src/CutAndPaste.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/CutAndPaste.C,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- src/CutAndPaste.C   2000/04/20 13:48:34     1.7
+++ src/CutAndPaste.C   2000/04/27 09:05:04     1.8
@@ -325,8 +325,8 @@
        (*par)->ParFromPos(pos)->PasteParagraph();
        
        // store the new cursor position
-       tmppar = lastbuffer;
-       tmppos = lastbuffer->Last();
+       *par = lastbuffer;
+       pos  = lastbuffer->Last();
        
        // maybe some pasting
        if (lastbuffer->Next() && paste_the_end) {
@@ -343,7 +343,6 @@
        }
        // restore the simple cut buffer
        buf = simple_cut_clone;
-       pos = tmppos;
     }
 
     return true;

Reply via email to