Make GHCi's banner fit in a standard 80-column terminal
authorIan Lynagh <igloo@earth.li>
Mon, 30 Apr 2007 15:17:37 +0000 (15:17 +0000)
committerIan Lynagh <igloo@earth.li>
Mon, 30 Apr 2007 15:17:37 +0000 (15:17 +0000)
compiler/ghci/InteractiveUI.hs

index 53afbf3..8f22af8 100644 (file)
@@ -89,9 +89,9 @@ import System.Posix.Internals ( setNonBlockingFD )
 ghciWelcomeMsg =
  "   ___         ___ _\n"++
  "  / _ \\ /\\  /\\/ __(_)\n"++
- " / /_\\// /_/ / /  | |      GHC Interactive, version " ++ cProjectVersion ++ ", for Haskell 98.\n"++
- "/ /_\\\\/ __  / /___| |      http://www.haskell.org/ghc/\n"++
- "\\____/\\/ /_/\\____/|_|      Type :? for help.\n"
+ " / /_\\// /_/ / /  | |    GHC Interactive, version " ++ cProjectVersion ++ ", for Haskell 98.\n"++
+ "/ /_\\\\/ __  / /___| |    http://www.haskell.org/ghc/\n"++
+ "\\____/\\/ /_/\\____/|_|    Type :? for help.\n"
 
 type Command = (String, String -> GHCi Bool, Bool, String -> IO [String])
 cmdName (n,_,_,_) = n