From 526b6a4afc285ca65d8a2366b2043bfbdbe776de Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 12 Dec 2016 16:57:06 +0100 Subject: [PATCH] Correctly handle the " \\fg" case. --- src/insets/InsetQuotes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5