Changes to make GF compile with GHC 6.5 from CVS: remove inlines use of !, change all latin-1 characters in haskell code to escapes.

This commit is contained in:
bringert
2006-05-20 02:56:06 +00:00
parent 49849d7fe3
commit b7e1e31909
14 changed files with 36 additions and 24 deletions

View File

@@ -125,7 +125,7 @@ welcomeMsgLib = do
welcomeMsg lib =
"Welcome to " ++ authorMsg ++++
"If ä and ö (umlaut letters) look strange, see 'h -coding'." ++
"If \228 and \246 (umlaut letters) look strange, see 'h -coding'." ++
"\n" ++ lib ++
"\n\nType 'h' for help, and 'h [Command] for more detailed help.\n"
@@ -133,9 +133,9 @@ authorMsg = unlines [
"Grammatical Framework, Version " ++ version,
"Compiled " ++ today,
"Copyright (c)",
"Björn Bringert, Håkan Burden, Hans-Joachim Daniels, Markus Forsberg",
"Thomas Hallgren, Harald Hammarström, Kristofer Johannisson,",
"Janna Khegai, Peter Ljunglöf, Petri Mäenpää, and",
"Bj\246rn Bringert, H\229kan Burden, Hans-Joachim Daniels, Markus Forsberg",
"Thomas Hallgren, Harald Hammarstr\246m, Kristofer Johannisson,",
"Janna Khegai, Peter Ljungl\246f, Petri M\228enp\228\228, and",
"Aarne Ranta, 1998-2006, under GNU General Public License (GPL)",
"Bug reports to aarne@cs.chalmers.se"
]