From f5f053ff86fcb409145e8b1db0ca8cdc4501698c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sun, 1 Jul 2012 02:12:56 +0200 Subject: [PATCH] tex2lyx/Parser.cpp: refine \verb handling --- src/tex2lyx/Parser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tex2lyx/Parser.cpp b/src/tex2lyx/Parser.cpp index ec48e01d02..e8337f489c 100644 --- a/src/tex2lyx/Parser.cpp +++ b/src/tex2lyx/Parser.cpp @@ -402,9 +402,9 @@ Parser::Arg Parser::getFullArg(char left, char right) // 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 + // within equal delimiters if (next_token().cat() == catEscape) - if (next_token().character() == c) + if (next_token().character() == right && right == left) result += '\\'; while ((c = getChar()) != right && good()) { // Ignore comments -- 2.39.5