mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-15 01:23:07 -07:00
Fixed parser warning for \{foo,bar\}
This commit is contained in:
parent
56e0119db1
commit
2500b2cce6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue