mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +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;
|
||||
}
|
||||
}
|
||||
if (inputenc == "default" or features.isRequired("japanese")) {
|
||||
if (inputenc == "default" || features.isRequired("japanese")) {
|
||||
// don't default to [utf8]{inputenc} with TeXLive >= 18
|
||||
os << "\\ifdefined\\UseRawInputEncoding\n";
|
||||
os << " \\UseRawInputEncoding\\fi\n";
|
||||
|
Loading…
Reference in New Issue
Block a user