diff --git a/src/tex2lyx/text.cpp b/src/tex2lyx/text.cpp index 763857e513..0c49bba9da 100644 --- a/src/tex2lyx/text.cpp +++ b/src/tex2lyx/text.cpp @@ -425,7 +425,10 @@ docstring convert_unicodesymbols(docstring s) Encodings::TEXT_CMD); os << parsed; s = rem; - i = 0; + if (s.empty() || s[0] != '\\') + i = 0; + else + i = 1; } return os.str(); }