]> git.lyx.org Git - features.git/commitdiff
Fake CJK quotes also for utf8 inputenc
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 30 Apr 2018 13:22:50 +0000 (15:22 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 30 Apr 2018 13:22:50 +0000 (15:22 +0200)
The glyphs are not covered yet.

src/insets/InsetQuotes.cpp

index 1200aeb7e41c5a357f5237256ab524158d430580..456455162a9108f27463328e74d57fd0f6d61255 100644 (file)
@@ -853,8 +853,11 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
                // (spacing and kerning is then handled respectively)
                qstr = docstring(1, quotechar);
        }
+       // The CJK marks are not yet covered by utf8 inputenc (we don't have the entry in
+       // unicodesymbols, since we don't want to add fake synbols there).
        else if (style == InsetQuotesParams::CJKQuotes || style  == InsetQuotesParams::CJKAngleQuotes) {
-               if (runparams.encoding && runparams.encoding->encodable(quotechar))
+               if (runparams.encoding && runparams.encoding->name() != "utf8"
+                   && runparams.encoding->encodable(quotechar))
                        qstr = docstring(1, quotechar);
                else
                        qstr = quoteparams.getLaTeXQuote(quotechar, "int");
@@ -1045,10 +1048,12 @@ void InsetQuotes::validate(LaTeXFeatures & features) const
                        features.require("textquotedbl");
                break;
        }
-       // we fake these from math
+       // we fake these from math (also for utf8 inputenc
+       // currently; see above)
        case 0x300e: // LEFT WHITE CORNER BRACKET
        case 0x300f: // RIGHT WHITE CORNER BRACKET
                if (!features.runparams().encoding
+                   || features.runparams().encoding->name() == "utf8"
                    || !features.runparams().encoding->encodable(type))
                        features.require("stmaryrd");
                break;