From: Juergen Spitzmueller Date: Sun, 27 Dec 2015 17:19:49 +0000 (+0100) Subject: Fix thinko in revert_newgloss: only dissolve ERTs in glosses! X-Git-Tag: 2.2.0beta1~303 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=77f5baec8f0cd52778adf0ff7ca435d69e4f352c;p=features.git Fix thinko in revert_newgloss: only dissolve ERTs in glosses! --- diff --git a/lib/lyx2lyx/lyx_2_2.py b/lib/lyx2lyx/lyx_2_2.py index 43389d4f7c..5a639cd239 100644 --- a/lib/lyx2lyx/lyx_2_2.py +++ b/lib/lyx2lyx/lyx_2_2.py @@ -922,17 +922,26 @@ def revert_newgloss(document): for glosse in glosses: i = 0 while True: - i = find_token(document.body, "\\begin_inset ERT", i) + i = find_token(document.body, glosse, i) if i == -1: - return + break j = find_end_of_inset(document.body, i) if j == -1: - document.warning("Malformed LyX document: Can't find end of ERT inset") + document.warning("Malformed LyX document: Can't find end of Glosse inset") i += 1 continue - ert = get_ert(document.body, i, True) - document.body[i:j+1] = [ert] - i = i + 1 + while True: + ert = find_token(document.body, "\\begin_inset ERT", i, j) + if ert == -1: + break + ertend = find_end_of_inset(document.body, ert) + if ertend == -1: + document.warning("Malformed LyX document: Can't find end of ERT inset") + ert += 1 + continue + ertcontent = get_ert(document.body, ert, True) + document.body[ert : ertend + 1] = [ertcontent] + i += 1 def convert_newgloss(document):