diff options
author | Georg Brandl <georg@python.org> | 2011-04-29 14:03:50 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-04-29 14:03:50 +0200 |
commit | 5ee0664f59860a3ae59075435ef179247a665bc4 (patch) | |
tree | d289ef05ca2ac6d8147c8f87fbf0853c596e2e92 /pygments/lexers/compiled.py | |
parent | ae9cd868fab0bcfd8fee758bbfc6cfc5504c2d8b (diff) | |
download | pygments-5ee0664f59860a3ae59075435ef179247a665bc4.tar.gz |
Fix awk lexer mimetypes attribute, and add more Fortran extensions (#661).
Diffstat (limited to 'pygments/lexers/compiled.py')
-rw-r--r-- | pygments/lexers/compiled.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index 5c10a785..a51bd420 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -1239,7 +1239,7 @@ class FortranLexer(RegexLexer): ''' name = 'Fortran' aliases = ['fortran'] - filenames = ['*.f', '*.f90'] + filenames = ['*.f', '*.f90', '*.F', '*.F90'] mimetypes = ['text/x-fortran'] flags = re.IGNORECASE |