From: Richard Kimberly Heck Date: Tue, 6 Dec 2022 04:37:40 +0000 (-0500) Subject: Fix infinite loop. Thinko! X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8567e09dbf79ef4e0919fe73f81364d89bc7c7e2;p=features.git Fix infinite loop. Thinko! --- diff --git a/lib/lyx2lyx/lyx_2_4.py b/lib/lyx2lyx/lyx_2_4.py index 4196983baa..72fda1e0b7 100644 --- a/lib/lyx2lyx/lyx_2_4.py +++ b/lib/lyx2lyx/lyx_2_4.py @@ -4571,10 +4571,11 @@ def revert_starred_refs(document): continue # If we are not using hyperref, then we just need to delete the line if not use_hyperref: - i = find_token(document.body, "nolink", i, end) - if i == -1: + k = find_token(document.body, "nolink", i, end) + if k == -1: + i = end continue - del document.body[i] + del document.body[k] i = end - 1 continue # If we are using hyperref, then we'll need to do more.