Fix typo in lyx2lyx conversion to 2.1 (taken from master)

This commit is contained in:
José Matos 2019-12-28 14:39:49 +00:00
parent 2b949e42f7
commit 78db6194c6
2 changed files with 3 additions and 2 deletions

View File

@ -180,7 +180,7 @@ def convert_TeX_brace_to_Argument(document, line, n, nmax, inset, environment, o
else: else:
beginBrace = find_token(document.body, "{", endBrace, end_layout) beginBrace = find_token(document.body, "{", endBrace, end_layout)
# assure that the ERTs are consecutive (11 or 12 depending if there is a space between the ERTs or not) # assure that the ERTs are consecutive (11 or 12 depending if there is a space between the ERTs or not)
if beginBrance != -1 and (beginBrace == endBrace + 11 or beginBrace == endBrace + 12): if beginBrace != -1 and (beginBrace == endBrace + 11 or beginBrace == endBrace + 12):
end = find_token(document.body, "\\end_inset", beginBrace) end = find_token(document.body, "\\end_inset", beginBrace)
document.body[lineERT : end + 1] = ["\\end_layout", "", "\\end_inset"] document.body[lineERT : end + 1] = ["\\end_layout", "", "\\end_inset"]
if loop == 1: if loop == 1:

View File

@ -182,7 +182,8 @@ What's new
* LYX2LYX * LYX2LYX
- Fix typo in the code that converts from file formats older than lyx 2.1
(thanks to Salvatore Falco).
* TEX2LYX * TEX2LYX