diff options
author | simonmar <unknown> | 2001-02-09 15:48:53 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-02-09 15:48:53 +0000 |
commit | d1461c5523d0db40b93d452c6347162eb6e33329 (patch) | |
tree | 30722cd5b34f76dd75b22d1583143140e1028fda | |
parent | dc63be7829b52ecbe2b4e7d4946f3f8ea19d3d05 (diff) | |
download | haskell-d1461c5523d0db40b93d452c6347162eb6e33329.tar.gz |
[project @ 2001-02-09 15:48:53 by simonmar]
quote the SourceForge bug reporting address rather than
glasgow-haskell-bugs@haskell.org.
-rw-r--r-- | ghc/compiler/ghci/InteractiveUI.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ghc/compiler/ghci/InteractiveUI.hs b/ghc/compiler/ghci/InteractiveUI.hs index f63e8d3edf..bee3ee802e 100644 --- a/ghc/compiler/ghci/InteractiveUI.hs +++ b/ghc/compiler/ghci/InteractiveUI.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: InteractiveUI.hs,v 1.38 2001/02/09 15:39:39 simonmar Exp $ +-- $Id: InteractiveUI.hs,v 1.39 2001/02/09 15:48:53 simonmar Exp $ -- -- GHC Interactive User Interface -- @@ -47,10 +47,10 @@ import Monad ( when ) ----------------------------------------------------------------------------- ghciWelcomeMsg = "\ -\ ___ ___ _ \n\ -\ / _ \\ /\\ /\\/ __(_) GHC Interactive, version " ++ cProjectVersion ++ ", For Haskell 98. \n\ -\ / /_\\// /_/ / / | | http://www.haskell.org/ghc \n\ -\/ /_\\\\/ __ / /___| | Bug reports to: glasgow-haskell-bugs@haskell.org \n\ +\ ___ ___ _\n\ +\ / _ \\ /\\ /\\/ __(_) GHC Interactive, version " ++ cProjectVersion ++ ", For Haskell 98.\n\ +\ / /_\\// /_/ / / | | http://www.haskell.org/ghc/\n\ +\/ /_\\\\/ __ / /___| | Report bugs here: http://sourceforge.net/bugs/?group_id=8032\n\ \\\____/\\/ /_/\\____/|_| Type :? for help.\n" commands :: [(String, String -> GHCi Bool)] |