summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
authorGaurav Jain <gaurav@gauravjain.org>2014-05-13 15:11:11 -0400
committerGaurav Jain <gaurav@gauravjain.org>2014-05-13 15:11:11 -0400
commite321d839b5e470643002ac35af6a95aa16464618 (patch)
tree15f0859651c5ee53713aff9d2df781fd6939caf5 /pygments/lexers/functional.py
parentc3ea33df8798c57b411bee026b75a12da4a3bc74 (diff)
downloadpygments-e321d839b5e470643002ac35af6a95aa16464618.tar.gz
Restore default MULTILINE flag to Haskell lexer
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r--pygments/lexers/functional.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py
index 4173be49..46450e0f 100644
--- a/pygments/lexers/functional.py
+++ b/pygments/lexers/functional.py
@@ -905,7 +905,7 @@ class HaskellLexer(RegexLexer):
filenames = ['*.hs']
mimetypes = ['text/x-haskell']
- flags = re.UNICODE
+ flags = re.MULTILINE | re.UNICODE
reserved = ['case','class','data','default','deriving','do','else',
'if','in','infix[lr]?','instance',