mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
parent
26d0fb3dd5
commit
87b44bcc1f
@ -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 =
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user