From: Juergen Spitzmueller Date: Mon, 12 Dec 2016 15:57:06 +0000 (+0100) Subject: Correctly handle the " \\fg" case. X-Git-Tag: 2.3.0alpha1~634 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=526b6a4afc285ca65d8a2366b2043bfbdbe776de;p=lyx.git Correctly handle the " \\fg" case. --- diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp index 53d204616d..48e081a610 100644 --- a/src/insets/InsetQuotes.cpp +++ b/src/insets/InsetQuotes.cpp @@ -303,7 +303,7 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const os << from_ascii(qstr); - if (prefixIs(qstr, "\\")) + if (prefixIs(qstr, "\\") || prefixIs(qstr, " \\")) // properly terminate the command depending on the context os << termcmd; }