mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-13 03:40:34 +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. (cherry picked from commit 945c0e4127e0393ee50907e9aa7f04a2c972a5fc)
This commit is contained in:
parent
35a7f81654
commit
24dea042c2
@ -315,9 +315,9 @@ def convert(lines):
|
||||
continue
|
||||
|
||||
if format == 34:
|
||||
match = re_InsetLayout2.match(lines[i])
|
||||
match = re_QInsetLayout2.match(lines[i])
|
||||
if not match:
|
||||
match = re_QInsetLayout2.match(lines[i])
|
||||
match = re_InsetLayout2.match(lines[i])
|
||||
if not match:
|
||||
match = re_CopyStyle2.match(lines[i])
|
||||
if not match:
|
||||
|
@ -76,6 +76,9 @@ What's new
|
||||
- Fix problem using lyxpak.py when outside the LyX tree: Variable was
|
||||
undefined.
|
||||
|
||||
- Fix layout conversion bug involving quoted Flex inset names that do not
|
||||
contain spaces.
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user