From: simonmar Date: Tue, 16 Oct 2001 10:50:11 +0000 (+0000) Subject: [project @ 2001-10-16 10:50:11 by simonmar] X-Git-Tag: Approximately_9120_patches~830 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b8d0c391b1df3556ce3d85c05ed391057261613b;p=ghc-hetmet.git [project @ 2001-10-16 10:50:11 by simonmar] mention that identifiers beginning with a double underscore are to be avoided in -fglasgow-exts mode. --- diff --git a/ghc/docs/users_guide/vs_haskell.sgml b/ghc/docs/users_guide/vs_haskell.sgml index e7e922a..7e0cc47 100644 --- a/ghc/docs/users_guide/vs_haskell.sgml +++ b/ghc/docs/users_guide/vs_haskell.sgml @@ -36,6 +36,16 @@ single qualified operator rather than the two lexemes M and .\. + + + When is on, GHC + reserves several keywords beginning with two underscores. + This is due to the fact that GHC uses the same lexical + analyser for interface file parsing as it does for source + file parsing, and these keywords are used in interface + files. Do not use any identifiers beginning with a double + underscore in mode. +