From a492f5d553cbe00aa4332a1acee3682af72f290e Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Sat, 15 Aug 2009 20:03:41 +0000 Subject: [PATCH] Fix warnings. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31061 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/lyxfind.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp index 750eb90d8a..14742d71da 100644 --- a/src/lyxfind.cpp +++ b/src/lyxfind.cpp @@ -765,9 +765,9 @@ string MatchStringAdv::normalize(docstring const & s) const while ((pos = t.find("\n")) != string::npos) t.replace(pos, 1, " "); // Remove stale empty \emph{}, \textbf{} and similar blocks from latexify - LYXERR(Debug::DEBUG, "Removing stale empty \emph{}, \textbf{} macros from: " << t); + LYXERR(Debug::DEBUG, "Removing stale empty \\emph{}, \\textbf{} macros from: " << t); while (regex_replace(t, t, "\\\\(emph|textbf)(\\{\\})+", "")) - LYXERR(Debug::DEBUG, " further removing stale empty \emph{}, \textbf{} macros from: " << t); + LYXERR(Debug::DEBUG, " further removing stale empty \\emph{}, \\textbf{} macros from: " << t); return t; } -- 2.39.2