diff options
author | Gaurav Jain <gaurav@gauravjain.org> | 2014-03-23 00:40:32 -0400 |
---|---|---|
committer | Gaurav Jain <gaurav@gauravjain.org> | 2014-03-23 00:40:32 -0400 |
commit | 9e6eb5b84c22615edbf6129bc662801a7bffe8a9 (patch) | |
tree | 8e3e07d927dab64b74e1826ab6071c5b1278190a | |
parent | fdc86d6fe1013084de343a66f3221628c1478c45 (diff) | |
download | pygments-9e6eb5b84c22615edbf6129bc662801a7bffe8a9.tar.gz |
Fix code formatting
-rw-r--r-- | pygments/lexers/compiled.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index f8fe8dfa..8893b07d 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -1435,7 +1435,7 @@ def objective(baselexer): (r',', Punctuation), (r'\.\.\.', Punctuation), (r'(\(.*?\))(\s*)([a-zA-Z$_][a-zA-Z0-9$_]*)', - bygroups(using(this), Text, Name.Variable)), + bygroups(using(this), Text, Name.Variable)), (r'[a-zA-Z$_][a-zA-Z0-9$_]*:', Name.Function), (';', Punctuation, '#pop'), ('{', Punctuation, 'function'), |