From 2500b2cce600d1cc4d969e01a3f88befd3fedebf Mon Sep 17 00:00:00 2001
From: Vidar Holen <spam@vidarholen.net>
Date: Sat, 6 Jul 2013 15:36:06 -0700
Subject: [PATCH] Fixed parser warning for \{foo,bar\}

---
 ShellCheck/Parser.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ShellCheck/Parser.hs b/ShellCheck/Parser.hs
index c5cf10b..74394a6 100644
--- a/ShellCheck/Parser.hs
+++ b/ShellCheck/Parser.hs
@@ -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