restore the correct Unicode ellipsis character
authorSimon Marlow <simonmar@microsoft.com>
Thu, 26 Apr 2007 21:31:00 +0000 (21:31 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Thu, 26 Apr 2007 21:31:00 +0000 (21:31 +0000)
It looks like this was accidentally replaced with '?' in the patch
"HsSyn clean up for indexed types".  (see bug #1294)

compiler/parser/Lexer.x

index d9a0fb0..aa236b1 100644 (file)
@@ -646,7 +646,7 @@ reservedSymsFM = listToUFM $
        ,("∀",        ITforall,       bit glaExtsBit)
        ,("→",   ITrarrow,    bit glaExtsBit)
        ,("←",   ITlarrow,    bit glaExtsBit)
-       ,("?",  ITdotdot,       bit glaExtsBit)
+       ,("⋯",        ITdotdot,       bit glaExtsBit)
         -- ToDo: ideally, → and ∷ should be "specials", so that they cannot
         -- form part of a large operator.  This would let us have a better
         -- syntax for kinds: ɑ∷*→* would be a legal kind signature. (maybe).