Fix warning when USE_READLINE is unset
authorManuel M T Chakravarty <chak@cse.unsw.edu.au>
Tue, 15 Jan 2008 01:50:14 +0000 (01:50 +0000)
committerManuel M T Chakravarty <chak@cse.unsw.edu.au>
Tue, 15 Jan 2008 01:50:14 +0000 (01:50 +0000)
compiler/ghci/InteractiveUI.hs

index e712e9d..e7df1bd 100644 (file)
@@ -158,11 +158,15 @@ builtin_commands = [
 -- 
 -- NOTE: in order for us to override the default correctly, any custom entry
 -- must be a SUBSET of word_break_chars.
-word_break_chars, flagWordBreakChars, filenameWordBreakChars :: String
+#ifdef USE_READLINE
+word_break_chars :: String
 word_break_chars = let symbols = "!#$%&*+/<=>?@\\^|-~"
                        specials = "(),;[]`{}"
                        spaces = " \t\n"
                    in spaces ++ specials ++ symbols
+#endif
+
+flagWordBreakChars, filenameWordBreakChars :: String
 flagWordBreakChars = " \t\n"
 filenameWordBreakChars = " \t\n\\`@$><=;|&{(" -- bash defaults