Skip to content

Commit

Permalink
comments only: point to relevant bug reports
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Marlow committed Sep 24, 2007
1 parent 2018c43 commit 34ff0e5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions compiler/ghci/InteractiveUI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1536,14 +1536,17 @@ setUpConsole = do
-- similarly for characters we write to the console.
--
-- At the moment, GHCi pretends all input is Latin-1. In the
-- future we should support UTF-8, but for now we set the code pages
-- to Latin-1.
-- future we should support UTF-8, but for now we set the code
-- pages to Latin-1. Doing it this way does lead to problems,
-- however: see bug #1649.
--
-- It seems you have to set the font in the console window to
-- a Unicode font in order for output to work properly,
-- otherwise non-ASCII characters are mapped wrongly. sigh.
-- (see MSDN for SetConsoleOutputCP()).
--
-- This call has been known to hang on some machines, see bug #1483
--
setConsoleCP 28591 -- ISO Latin-1
setConsoleOutputCP 28591 -- ISO Latin-1
#endif
Expand Down

0 comments on commit 34ff0e5

Please sign in to comment.