mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
Fix bug #7610 (wrong latex flavor flag set by pref2pref).
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39006 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d2a09bf5a6
commit
31d76f3368
@ -71,9 +71,17 @@ def latex_flavor(line):
|
||||
conv = m.group(1)
|
||||
fmat = m.group(2)
|
||||
args = m.group(3)
|
||||
flavor = "pdflatex"
|
||||
if conv in ("platex", "xetex", "luatex"):
|
||||
conv2fl = {
|
||||
"luatex": "lualatex",
|
||||
"pplatex": "latex",
|
||||
"xetex": "xelatex",
|
||||
}
|
||||
if conv in conv2fl.keys():
|
||||
flavor = conv2fl[conv]
|
||||
else:
|
||||
flavor = conv
|
||||
if flavor == "latex":
|
||||
return no_match
|
||||
return (True,
|
||||
"\\converter \"%s\" \"%s\" \"%s\" \"latex=%s\"" % (conv, fmat, args, flavor))
|
||||
|
||||
|
@ -102,6 +102,8 @@ What's new
|
||||
- On Windows, improve detection of the TeX engine when the file system does
|
||||
not support short names and the temp directory contains spaces.
|
||||
|
||||
- Fixed the latex flag set by the prefs2prefs script (bug 7610).
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user