diff options
Diffstat (limited to 'pygments/lexers/compiled.py')
-rw-r--r-- | pygments/lexers/compiled.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index bd8fbc26..3624b270 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -5,9 +5,8 @@ Lexers for compiled languages. - :copyright: 2006-2009 by Georg Brandl, Armin Ronacher, Christoph Hack, - Whitney Young, Kirk McDonald, Stou Sandalski, Krzysiek Goj. - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import re @@ -1295,6 +1294,7 @@ class FortranLexer(RegexLexer): ], } + class GLShaderLexer(RegexLexer): """ GLSL (OpenGL Shader) lexer. |