From b360a3366d9d9054b0434f5fc64ebe2606b74c17 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 26 Apr 2007 21:31:00 +0000 Subject: [PATCH] restore the correct Unicode ellipsis character It looks like this was accidentally replaced with '?' in the patch "HsSyn clean up for indexed types". (see bug #1294) --- compiler/parser/Lexer.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index d9a0fb0..aa236b1 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -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). -- 1.7.10.4