This commit is contained in:
Pierre Tachoire
2025-07-10 16:01:36 -07:00
parent 18796ae44e
commit 2b5652e1e4

View File

@@ -204,7 +204,7 @@ pub const Parser = struct {
}
const c = p.s[p.i];
if (!nameStart(c) and c != '\\') {
if (!(nameStart(c) or c == '\\')) {
return ParseError.ExpectedSelector;
}