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
|
pos <- getPosition
|
||||||
backslash
|
backslash
|
||||||
do
|
do
|
||||||
next <- (quotable <|> oneOf "?*@!+[]")
|
next <- (quotable <|> oneOf "?*@!+[]{}")
|
||||||
return $ if next == '\n' then "" else [next]
|
return $ if next == '\n' then "" else [next]
|
||||||
<|>
|
<|>
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue