(cherry picked from commit 17ea71b31c)
This commit is contained in:
Enrico Forestieri 2018-05-19 21:33:29 +02:00
parent 26d0fb3dd5
commit 87b44bcc1f
2 changed files with 9 additions and 6 deletions

View File

@ -2264,16 +2264,16 @@ bool BufferParams::writeLaTeX(otexstream & os, LaTeXFeatures & features,
if (!listings_params.empty()
|| features.mustProvide("listings")
|| features.mustProvide("minted")) {
if (features.mustProvide("listings"))
os << "\\usepackage{listings}\n";
else
if (use_minted)
os << "\\usepackage{minted}\n";
else
os << "\\usepackage{listings}\n";
}
if (!listings_params.empty()) {
if (features.mustProvide("listings"))
os << "\\lstset{";
else
if (use_minted)
os << "\\setminted{";
else
os << "\\lstset{";
// do not test validity because listings_params is
// supposed to be valid
string par =

View File

@ -253,6 +253,9 @@ What's new
- Correct list of previous versions to check for user directory contents
(bug 11142 on Mac).
- Honor the syntax highlighting package choice when adding listing params
without actually inserting a listing (bug 11151).
* INTERNALS
- Fix bug that TeX files were not detected when reconfiguring LyX