From ff6369d35e1bbe1d0926b42eb97ef747c89f9d05 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnter=20Milde?= Date: Thu, 11 May 2017 21:41:12 +0200 Subject: [PATCH] Fix fa0f142e (plain quotes fix). Forgot the "break", sorry. --- src/insets/InsetQuotes.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp index 706bc0e791..14084d5ef8 100644 --- a/src/insets/InsetQuotes.cpp +++ b/src/insets/InsetQuotes.cpp @@ -375,6 +375,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op) const } case 0x0027: {// ' (plain) res = "\\textquotesingle"; + break; } case 0x201e: {// ,, if (op == "t1") @@ -419,6 +420,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op) const } case 0x0022: {// " res = "\\textquotedbl"; + break; } // The following are fakes // This is just to get something symbolic -- 2.39.5