From 4da6b4667527241d7e227de51adb1dc0997bab90 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Sat, 2 Oct 2010 19:51:00 +0000 Subject: [PATCH 1/1] -fwarn-tabs: add "Warning" to the message --- compiler/parser/Lexer.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 2e17b8f..f31e623 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -140,7 +140,7 @@ haskell :- -- everywhere: skip whitespace and comments $white_no_nl+ ; -$tab+ { warn Opt_WarnTabs (text "Tab character") } +$tab+ { warn Opt_WarnTabs (text "Warning: Tab character") } -- Everywhere: deal with nested comments. We explicitly rule out -- pragmas, "{-#", so that we don't accidentally treat them as comments. -- 1.7.10.4