From cb284b18d4be6f8af1d59dbbf56bc087b16b3d4f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sat, 30 Jun 2012 03:25:19 +0200 Subject: [PATCH] tex2lyx: fix handling of \verb - Parser.cpp: \verb can have any character as delimiter (except of ASCII letters) not only '+', therefore partly revert [3943b887/lyxgit] and fix it for all cases --- src/tex2lyx/Parser.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tex2lyx/Parser.cpp b/src/tex2lyx/Parser.cpp index 2de43338a0..ec48e01d02 100644 --- a/src/tex2lyx/Parser.cpp +++ b/src/tex2lyx/Parser.cpp @@ -399,12 +399,12 @@ Parser::Arg Parser::getFullArg(char left, char right) putback(); return make_pair(false, string()); } else { - // in case of the '+' as delimiter single a '\' is allowed - // as content, for example "\verb+\+" (reported as bug #4468) - // we need special handling because single \ are normally ignored - // or taken as start of a command - if (c == '+') - if (next_token().cat() == catEscape) + // for \verb a single '\' is allowed no matter what the delimiter is + // for example "\verb+\+" (reported as bug #4468) + // To support this, we allow single '\' if it is the only character + // within the delimiters + if (next_token().cat() == catEscape) + if (next_token().character() == c) result += '\\'; while ((c = getChar()) != right && good()) { // Ignore comments -- 2.39.5