summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r--pygments/lexers/functional.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py
index de48d992..5ba670a5 100644
--- a/pygments/lexers/functional.py
+++ b/pygments/lexers/functional.py
@@ -381,6 +381,7 @@ class HaskellLexer(RegexLexer):
'import': [
# Import statements
(r'\s+', Text),
+ (r'"', String, 'string'),
# after "funclist" state
(r'\)', Punctuation, '#pop'),
(r'qualified\b', Keyword),