mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
Use || instead of or operator
It is more consistent and visual studio seems to dislike it anyway.
This commit is contained in:
parent
2c5c397afa
commit
32d6396f88
@ -3290,7 +3290,7 @@ void BufferParams::writeEncodingPreamble(otexstream & os,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (inputenc == "default" or features.isRequired("japanese")) {
|
if (inputenc == "default" || features.isRequired("japanese")) {
|
||||||
// don't default to [utf8]{inputenc} with TeXLive >= 18
|
// don't default to [utf8]{inputenc} with TeXLive >= 18
|
||||||
os << "\\ifdefined\\UseRawInputEncoding\n";
|
os << "\\ifdefined\\UseRawInputEncoding\n";
|
||||||
os << " \\UseRawInputEncoding\\fi\n";
|
os << " \\UseRawInputEncoding\\fi\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user