Changeset 126

Show
Ignore:
Timestamp:
05/02/08 16:48:40 (4 years ago)
Author:
phil
Message:

n3 lexer fix for #21

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tools/trunk/pygments/lexers/sw.py

    r125 r126  
    5252        ], 
    5353        'objList': [ 
     54            include('comments'), 
    5455            (r'\s*\)', Text, '#pop'), 
    5556            include('object') 
    5657        ], 
    5758        'object': [ 
     59            include('comments'), 
    5860            (r'\s*\[', Text, 'predObj'), 
    5961            (r'\s*<[^> ]*>', Name.Attribute),