diff options
author | David Waern <david.waern@gmail.com> | 2008-02-10 00:48:06 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2008-02-10 00:48:06 +0000 |
commit | c595811ef4e6378e5df41f680b644d7665cf4682 (patch) | |
tree | 85c66072c473856088891c2c8614218143744d74 | |
parent | 1be50f5d768e6dadd1b9466e56fabd7ba91bc058 (diff) |
Update the version message to fit in small terminals
-rw-r--r-- | src/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs index 597048fb..e8f14654 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -286,8 +286,8 @@ handleEasyFlags flags fileArgs = do throwE ("-h cannot be used with --gen-index or --gen-contents") where byeVersion = bye $ - "Haddock version " ++ projectVersion ++ - ", (c) Simon Marlow 2006; ported to the GHC-API by David Waern 2006-2007\n" + "Haddock version " ++ projectVersion ++ ", (c) Simon Marlow 2006\n" + ++ "Ported to use the GHC API by David Waern 2006-2008\n" byeGhcVersion = bye $ (fromJust $ lookup "Project version" $ compilerInfo) ++ "\n" |