diff options
author | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:18:03 -0800 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:18:03 -0800 |
commit | 050baee4a72b66b946f44bc8ef1b98b667ece706 (patch) | |
tree | c60847b194dd8c05b644152a98b3505dd0527ff9 /pygments/lexers/functional.py | |
parent | b1a1f966e6ee7a9f34b1faf56682bb5126b7164a (diff) | |
download | pygments-050baee4a72b66b946f44bc8ef1b98b667ece706.tar.gz |
Fix parsing of haskell imports (#527)
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r-- | pygments/lexers/functional.py | 1 |
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), |