mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Patch from Enrico fixing a problem with the lyxpak.py script when
"Add Bibliography to TOC" is used. Fixes #9044. (cherry picked from commit 1fe2910774b5f1d673e3f85349c8d360023214db)
This commit is contained in:
parent
bfb6d68447
commit
e60af4e98a
@ -146,6 +146,8 @@ def gather_files(curfile, incfiles, lyx2lyx):
|
|||||||
match = re_options.match(lines[i])
|
match = re_options.match(lines[i])
|
||||||
if match:
|
if match:
|
||||||
file = match.group(3).strip('"')
|
file = match.group(3).strip('"')
|
||||||
|
if file.startswith("bibtotoc,"):
|
||||||
|
file = file[9:]
|
||||||
if not os.path.isabs(file):
|
if not os.path.isabs(file):
|
||||||
file = os.path.join(curdir, file + '.bst')
|
file = os.path.join(curdir, file + '.bst')
|
||||||
if os.path.exists(file):
|
if os.path.exists(file):
|
||||||
|
@ -68,6 +68,8 @@ What's new
|
|||||||
|
|
||||||
- Fix clash between \protect and \ensuremath (bug 8889).
|
- Fix clash between \protect and \ensuremath (bug 8889).
|
||||||
|
|
||||||
|
- Fix problem with export of LyX archive when bibtotoc is used (bug 9044).
|
||||||
|
|
||||||
|
|
||||||
* USER INTERFACE
|
* USER INTERFACE
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user