mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Fix prefs2prefs for \\set_color
This commit is contained in:
parent
34c166f45f
commit
2ac48f2c5b
@ -455,6 +455,16 @@ def rename_cyrillic_kmap_files(line):
|
|||||||
line = line.replace('"koi8-u"', '"ukrainian"')
|
line = line.replace('"koi8-u"', '"ukrainian"')
|
||||||
return (True, line)
|
return (True, line)
|
||||||
|
|
||||||
|
def add_dark_color(line):
|
||||||
|
if not line.lower().startswith("\\set_color "):
|
||||||
|
return no_match
|
||||||
|
colre = re.compile(r'^\\set_color\s+(.*)\s+(.*)"', re.IGNORECASE)
|
||||||
|
m = colre.match(line)
|
||||||
|
if not m:
|
||||||
|
return no_match
|
||||||
|
line += " " + m.group(2) + '"'
|
||||||
|
return (True, line)
|
||||||
|
|
||||||
# End conversions for LyX 2.3 to 2.4
|
# End conversions for LyX 2.3 to 2.4
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
@ -504,5 +514,5 @@ conversions = [
|
|||||||
[ 32, []],
|
[ 32, []],
|
||||||
[ 33, []],
|
[ 33, []],
|
||||||
[ 34, [rename_cyrillic_kmap_files]],
|
[ 34, [rename_cyrillic_kmap_files]],
|
||||||
[ 35, []]
|
[ 35, [add_dark_color]]
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user