提交 9b882c09 编写于 作者: J jp9000

should only check for ending quote character in locale data if it began with a quote

上级 70290b8c
......@@ -203,10 +203,10 @@ static void lookup_getstringtoken(struct lexer *lex, struct strref *token)
if (*token->array == '"') {
token->array++;
token->len--;
}
if (*(temp-1) == '"')
token->len--;
if (*(temp-1) == '"')
token->len--;
}
lex->offset = temp;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册