]> git.lyx.org Git - features.git/commitdiff
lyx2lyx/lyx_1_6.py: small code change for better understanding
authorUwe Stöhr <uwestoehr@web.de>
Wed, 3 Oct 2007 09:55:37 +0000 (09:55 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Wed, 3 Oct 2007 09:55:37 +0000 (09:55 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20689 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/lyx_1_6.py

index 031f1cdc16cc133a02a492bfd67ff4c3052ca00f..cccb14f64ebdf42bdcb807968300bec641446bb6 100644 (file)
@@ -347,13 +347,13 @@ def revert_wrapfig_options(document):
         i = find_token(document.body, "lines", i)
         if i == -1:
             return
-        del document.body[i]
         j = find_token(document.body, "overhang", i+1)
-        if j != i + 1 and j != -1:
+        if j != i + 2 and j != -1:
             document.warning("Malformed LyX document: Couldn't find overhang parameter of wrap float.")
         if j == -1:
             return
-        del document.body[j]
+        del document.body[i]
+        del document.body[j-1]
         i = i + 1