From 895a78c71c5ba5fca5cc23603facd12bf9765209 Mon Sep 17 00:00:00 2001 From: simonm Date: Wed, 8 Oct 1997 12:53:37 +0000 Subject: [PATCH] [project @ 1997-10-08 12:53:37 by simonm] Add -fno-implicit-prelude. This does nothing except tell the reader that things like () and -> shouldn't be resolved to Prelude.() and Prelude.->. --- ghc/lib/required/Prelude.lhs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ghc/lib/required/Prelude.lhs b/ghc/lib/required/Prelude.lhs index ce24d75..7556c0a 100644 --- a/ghc/lib/required/Prelude.lhs +++ b/ghc/lib/required/Prelude.lhs @@ -1,5 +1,10 @@ +We add the option -fno-implicit-prelude here to tell the reader that +special names such as () and -> shouldn't be resolved to Prelude.() +and Prelude.-> (as they are normally). -- SDM 8/10/97 \begin{code} +{-# OPTIONS -fno-implicit-prelude #-} + module Prelude ( -- Everything from these modules -- 1.7.10.4