diff options
author | Pat Pannuto <pat.pannuto@gmail.com> | 2013-05-06 14:48:51 -0400 |
---|---|---|
committer | Pat Pannuto <pat.pannuto@gmail.com> | 2013-05-06 14:48:51 -0400 |
commit | dad8cd7b108ba7d0948d53221c76829b24921006 (patch) | |
tree | 98675cd4ea269ab03f5ec0cac78e39f4d0350e6a /pygments/lexers/compiled.py | |
parent | 27a971b4c06db45cf23a4235846ec941ee32b1a6 (diff) | |
download | pygments-dad8cd7b108ba7d0948d53221c76829b24921006.tar.gz |
I am very bad at mercurial, apologies for the ugly history
If I had any idea how to cherry-pick my original patch from
January and apply it to the current mainline and update this
``correctly'', I would do so, but I am simply not good enough
at hg; sorry.
Diffstat (limited to 'pygments/lexers/compiled.py')
-rw-r--r-- | pygments/lexers/compiled.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index 16b2d734..68fabd57 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -291,7 +291,7 @@ class NesCLexer(CLexer): class ClayLexer(RegexLexer): """ - For `Clay <http://claylabs.com/clay/>`_source. + For `Clay <http://claylabs.com/clay/>`_ source. *New in Pygments 1.7.* """ @@ -299,7 +299,6 @@ class ClayLexer(RegexLexer): filenames = ['*.clay'] aliases = ['clay'] mimetypes = ['text/x-clay'] - tokens = { 'root': [ (r'\s', Text), |