summaryrefslogtreecommitdiff
path: root/pygments/lexers/futhark.py
diff options
context:
space:
mode:
authorFabrizio Riguzzi <fabrizio.riguzzi@unife.it>2022-02-20 13:20:18 +0100
committerFabrizio Riguzzi <fabrizio.riguzzi@unife.it>2022-02-20 13:20:18 +0100
commit61c78d1effec9b4e80c434320d772eee37a002a0 (patch)
tree1aa99967ee66eb31e033d63d4b77278e74da2a25 /pygments/lexers/futhark.py
parentc9bd789dbb397792f5adf912f8599175066724e9 (diff)
parent4b8738a825bef845e66ce57d4ca204b584afda08 (diff)
downloadpygments-git-61c78d1effec9b4e80c434320d772eee37a002a0.tar.gz
Merge branch 'master' of github.com:pygments/pygments
Diffstat (limited to 'pygments/lexers/futhark.py')
-rw-r--r--pygments/lexers/futhark.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pygments/lexers/futhark.py b/pygments/lexers/futhark.py
index 5c120137..7f481ba8 100644
--- a/pygments/lexers/futhark.py
+++ b/pygments/lexers/futhark.py
@@ -32,8 +32,6 @@ class FutharkLexer(RegexLexer):
filenames = ['*.fut']
mimetypes = ['text/x-futhark']
- flags = re.MULTILINE | re.UNICODE
-
num_types = ('i8', 'i16', 'i32', 'i64', 'u8', 'u16', 'u32', 'u64', 'f32', 'f64')
other_types = ('bool', )