Fixed parser warning for \{foo,bar\}
This commit is contained in:
parent
56e0119db1
commit
2500b2cce6
|
@ -754,7 +754,7 @@ readNormalEscaped = called "escaped char" $ do
|
|||
pos <- getPosition
|
||||
backslash
|
||||
do
|
||||
next <- (quotable <|> oneOf "?*@!+[]")
|
||||
next <- (quotable <|> oneOf "?*@!+[]{}")
|
||||
return $ if next == '\n' then "" else [next]
|
||||
<|>
|
||||
do
|
||||
|
|
Loading…
Reference in New Issue