diff options
author | Bryan Davis <bd808@bd808.com> | 2013-04-25 23:04:09 -0600 |
---|---|---|
committer | Bryan Davis <bd808@bd808.com> | 2013-04-25 23:04:09 -0600 |
commit | 3eae99b73eba30b37c703f545d0af2cf444e45a5 (patch) | |
tree | 3ef2856d59af07d3b50b894c3f57d3de7797ddd6 | |
parent | 4641268f11100113420b27d0fd7465c9c43e814b (diff) | |
download | pygments-3eae99b73eba30b37c703f545d0af2cf444e45a5.tar.gz |
Remove comment.
-rw-r--r-- | pygments/lexers/text.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index f33febaf..9a28ffab 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -1853,20 +1853,6 @@ class EbnfLexer(RegexLexer): filenames = ['*.ebnf'] mimetypes = ['text/x-ebnf'] - """ -syn match ebnfMetaIdentifier /[A-Za-z]/ skipwhite skipempty nextgroup=ebnfSeperator - -syn match ebnfSeperator "=" contained nextgroup=ebnfProduction skipwhite skipempty - -syn region ebnfProduction start=/\zs[^\.;]/ end=/[\.;]/me=e-1 contained contains=ebnfSpecial,ebnfDelimiter,ebnfTerminal,ebnfSpecialSequence,ebnfComment nextgroup=ebnfEndProduction skipwhite skipempty -syn match ebnfDelimiter #[,(|)\]}\[{/!]\|\(\*)\)\|\((\*\)\|\(/)\)\|\(:)\)\|\((/\)\|\((:\)# contained -syn match ebnfSpecial /[\-\*]/ contained -syn region ebnfSpecialSequence matchgroup=Delimiter start=/?/ end=/?/ contained -syn match ebnfEndProduction /[\.;]/ contained -syn region ebnfTerminal matchgroup=delimiter start=/"/ end=/"/ contained -syn region ebnfTerminal matchgroup=delimiter start=/'/ end=/'/ contained -syn region ebnfComment start="(\*" end="\*)" - """ tokens = { 'root': [ include('whitespace'), |