diff options
author | Georg Brandl <georg@python.org> | 2010-11-08 11:13:14 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-08 11:13:14 +0100 |
commit | bf7ec0257897941cf0c387437813aa5e6d776369 (patch) | |
tree | 1ff74e83780eac2afa3fe30eb445caeec5b2b1ba | |
parent | 482366a5e549c830e5c89bba644ead171412edfa (diff) | |
download | pygments-bf7ec0257897941cf0c387437813aa5e6d776369.tar.gz |
Recognize names again.
-rw-r--r-- | pygments/lexers/compiled.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index a1bca14e..6c1ac5a6 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -1348,6 +1348,7 @@ class GLShaderLexer(RegexLexer): r'lowp|mediump|highp|precision|input|output|hvec[234]|' r'[df]vec[234]|sampler[23]DRect|sampler2DRectShadow|sizeof|' r'cast|namespace|using)\b', Keyword), #future use + (r'[a-zA-Z_][a-zA-Z_0-9]*', Name), (r'\.', Punctuation), (r'\s+', Text), ], |