mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix lyx2lyx bug: We need to check for quoted names before we check
for unquoted ones. Otherwise, a quoted name with no spaces gets treated as if it were an unquoted name.
This commit is contained in:
parent
e93f4d470d
commit
945c0e4127
@ -444,9 +444,9 @@ def convert(lines):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if format == 34:
|
if format == 34:
|
||||||
match = re_InsetLayout2.match(lines[i])
|
|
||||||
if not match:
|
|
||||||
match = re_QInsetLayout2.match(lines[i])
|
match = re_QInsetLayout2.match(lines[i])
|
||||||
|
if not match:
|
||||||
|
match = re_InsetLayout2.match(lines[i])
|
||||||
if not match:
|
if not match:
|
||||||
match = re_CopyStyle2.match(lines[i])
|
match = re_CopyStyle2.match(lines[i])
|
||||||
if not match:
|
if not match:
|
||||||
|
Loading…
Reference in New Issue
Block a user