diff options
author | gbrandl <devnull@localhost> | 2009-03-05 10:23:44 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-03-05 10:23:44 +0100 |
commit | a3d1dc592842f09efe7ab1b4310a23632c6479dd (patch) | |
tree | 5beb7619689bb1fdcbd3bd77e13edafbfde2d462 /pygments/lexers/web.py | |
parent | 69a95762367c67429a0ab90cbbdbf6aa8e6d2dd3 (diff) | |
download | pygments-a3d1dc592842f09efe7ab1b4310a23632c6479dd.tar.gz |
Fix EOL80.
Diffstat (limited to 'pygments/lexers/web.py')
-rw-r--r-- | pygments/lexers/web.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index 2f9c9570..5d764052 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -211,8 +211,10 @@ class ActionScript3Lexer(RegexLexer): (r'[~\^\*!%&<>\|+=:;,/?\\{}\[\]();.-]+', Operator), ], 'funcparams': [ - (r'(\s*)(\.\.\.)?(' + identifier + r')(\s*)(:)(\s*)(' + identifier + r'|\*)(\s*)', - bygroups(Text, Punctuation, Name, Text, Operator, Text, Keyword.Type, Text), 'defval'), + (r'(\s*)(\.\.\.)?(' + identifier + r')(\s*)(:)(\s*)(' + + identifier + r'|\*)(\s*)', + bygroups(Text, Punctuation, Name, Text, Operator, Text, + Keyword.Type, Text), 'defval'), (r'\)', Operator, 'type') ], 'type': [ @@ -221,7 +223,7 @@ class ActionScript3Lexer(RegexLexer): (r'\s*', Text, '#pop:2') ], 'defval': [ - (r'(=)(\s*)([^(),]+)(\s*)(,?)', + (r'(=)(\s*)([^(),]+)(\s*)(,?)', bygroups(Operator, Text, using(this), Text, Operator), '#pop'), (r',?', Operator, '#pop') ] |