From: Juergen Spitzmueller Date: Thu, 22 Aug 2019 15:16:26 +0000 (+0200) Subject: lyx2lyx: fixup gloss reversion X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=26828120950538fe9451b266212f2f522ff14781;p=features.git lyx2lyx: fixup gloss reversion --- diff --git a/lib/lyx2lyx/lyx_2_4.py b/lib/lyx2lyx/lyx_2_4.py index 97a3f3092e..8436d9a84c 100644 --- a/lib/lyx2lyx/lyx_2_4.py +++ b/lib/lyx2lyx/lyx_2_4.py @@ -2022,7 +2022,7 @@ def revert_linggloss(document): beginPlain = find_token(document.body, "\\begin_layout Plain Layout", i) endInset = find_end_of_inset(document.body, i) - endPlain = find_token_backwards(document.body, "\\end_layout", endInset) + endPlain = find_end_of_layout(document.body, beginPlain) precontent = put_cmd_in_ert(cmd) if len(optargcontent) > 0: precontent += put_cmd_in_ert("[") + optargcontent + put_cmd_in_ert("]")