diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-05-05 12:12:02 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-05-05 12:12:02 +0000 |
commit | 661c97c65e5fa47177502e592bb763f752b487ac (patch) | |
tree | 41da8582555b60fee445374a2f17df37a47a5afe | |
parent | 58b2c6dfaf64a06eff317235f8ac9b7f73b5bf5a (diff) | |
download | haskell-661c97c65e5fa47177502e592bb763f752b487ac.tar.gz |
Remove the Unicode alternative for ".." (#3894)
-rw-r--r-- | compiler/parser/Lexer.x | 1 | ||||
-rw-r--r-- | docs/users_guide/glasgow_exts.xml | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 6cb2c3b7ca..2493b21179 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -701,7 +701,6 @@ reservedSymsFM = listToUFM $ explicitForallEnabled i) ,("→", ITrarrow, unicodeSyntaxEnabled) ,("←", ITlarrow, unicodeSyntaxEnabled) - ,("⋯", ITdotdot, unicodeSyntaxEnabled) ,("⤙", ITlarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i) ,("⤚", ITrarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i) diff --git a/docs/users_guide/glasgow_exts.xml b/docs/users_guide/glasgow_exts.xml index 4b1c7a1d83..b7d43c9f3f 100644 --- a/docs/users_guide/glasgow_exts.xml +++ b/docs/users_guide/glasgow_exts.xml @@ -400,14 +400,6 @@ Indeed, the bindings can even be recursive. <entry>LEFTWARDS ARROW</entry> </row> </tbody> - <tbody> - <row> - <entry>..</entry> - <entry>…</entry> - <entry>0x22EF</entry> - <entry>MIDLINE HORIZONTAL ELLIPSIS</entry> - </row> - </tbody> <tbody> <row> |