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:
Richard Heck 2012-12-10 11:09:50 -05:00
parent e93f4d470d
commit 945c0e4127

View File

@ -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: