Fix encoding inheritance with CJKUtf8 as custom document encoding

Fixes #11579

(cherry picked from commit b2604aa840)
This commit is contained in:
Juergen Spitzmueller 2020-02-07 16:18:47 +01:00 committed by Richard Kimberly Heck
parent ae1544fd51
commit e30adc702c

View File

@ -20,6 +20,7 @@
#include "Font.h"
#include "InsetList.h"
#include "Language.h"
#include "LaTeXFeatures.h"
#include "Paragraph.h"
#include "LyXRC.h"
#include "Text.h"
@ -705,13 +706,17 @@ Encoding const * DocIterator::getEncoding() const
Text const & text = *sl.text();
Language const * lang =
text.getPar(sl.pit()).getFont(bp, sl.pos(),
text.outerFont(sl.pit())).language();
// If we have a custom encoding for the buffer, we only switch
// encoding for CJK (see output_latex::switchEncoding())
text.outerFont(sl.pit())).language();
// If we have a custom encoding for the buffer, we do not switch encoding ...
bool const customenc =
bp.inputenc != "auto" && bp.inputenc != "default";
// ... except for non-CJKutf8 CJK (see output_latex::switchEncoding())
bool const cjk_non_utf8 =
bp.encoding().name() != "utf8-cjk"
|| !LaTeXFeatures::isAvailable("CJKutf8");
Encoding const * enc =
(customenc && lang->encoding()->package() != Encoding::CJK)
(customenc
&& (lang->encoding()->package() != Encoding::CJK || !cjk_non_utf8))
? &bp.encoding() : lang->encoding();
// Some insets force specific encodings sometimes (e.g., listings in
@ -723,7 +728,7 @@ Encoding const * DocIterator::getEncoding() const
Text const & otext = *slices_[i].text();
Language const * olang =
otext.getPar(slices_[i].pit()).getFont(bp, slices_[i].pos(),
otext.outerFont(slices_[i].pit())).language();
otext.outerFont(slices_[i].pit())).language();
Encoding const * oenc = olang->encoding();
if (oenc->name() != "inherit")
return inset().forcedEncoding(enc, oenc);
@ -740,11 +745,12 @@ Encoding const * DocIterator::getEncoding() const
Text const & otext = *slices_[i].text();
Language const * olang =
otext.getPar(slices_[i].pit()).getFont(bp, slices_[i].pos(),
otext.outerFont(slices_[i].pit())).language();
otext.outerFont(slices_[i].pit())).language();
// Again, if we have a custom encoding, this is used
// instead of the language's.
Encoding const * oenc =
(customenc && olang->encoding()->package() != Encoding::CJK)
(customenc
&& (olang->encoding()->package() != Encoding::CJK || !cjk_non_utf8))
? &bp.encoding() : olang->encoding();
if (olang->encoding()->name() != "inherit")
return oenc;