mirror of
https://github.com/pantor/inja.git
synced 2026-02-17 09:03:58 +00:00
This commit is contained in:
@@ -213,7 +213,7 @@ class Lexer {
|
||||
}
|
||||
const char ch = m_in[pos++];
|
||||
if (ch == '\\') {
|
||||
escape = true;
|
||||
escape = !escape;
|
||||
} else if (!escape && ch == m_in[tok_start]) {
|
||||
break;
|
||||
} else {
|
||||
|
||||
@@ -1198,7 +1198,7 @@ class Lexer {
|
||||
}
|
||||
const char ch = m_in[pos++];
|
||||
if (ch == '\\') {
|
||||
escape = true;
|
||||
escape = !escape;
|
||||
} else if (!escape && ch == m_in[tok_start]) {
|
||||
break;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user