diff options
author | Georg Brandl <georg@python.org> | 2014-04-15 07:50:34 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-04-15 07:50:34 +0200 |
commit | a07c1f2555e26a6a21d1668bdfd8c28c01c559a6 (patch) | |
tree | 32de0c8e0484b91fc0be4d4ce4fc3b62e543cdf7 /pygments/lexers/math.py | |
parent | a2278e738d2c657d8002c2e443f11907416c8001 (diff) | |
download | pygments-a07c1f2555e26a6a21d1668bdfd8c28c01c559a6.tar.gz |
Many minor style fixes (trailing whitespace, tabs, etc.)
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r-- | pygments/lexers/math.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index c587ca93..cfbfc432 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -1051,7 +1051,7 @@ class SLexer(RegexLexer): mimetypes = ['text/S-plus', 'text/S', 'text/x-r-source', 'text/x-r', 'text/x-R', 'text/x-r-history', 'text/x-r-profile'] - builtins_base = [ + builtins_base = [ 'Arg', 'Conj', 'Cstack_info', 'Encoding', 'FALSE', 'Filter', 'Find', 'I', 'ISOdate', 'ISOdatetime', 'Im', 'Inf', 'La\.svd', 'Map', 'Math\.Date', 'Math\.POSIXt', 'Math\.data\.frame', @@ -1171,8 +1171,8 @@ class SLexer(RegexLexer): 'getNativeSymbolInfo', 'getOption', 'getRversion', 'getSrcLines', 'getTaskCallbackNames', 'geterrmessage', 'gettext', 'gettextf', 'getwd', 'gl', 'globalenv', 'gregexpr', 'grep', 'grepRaw', 'grepl', - 'gsub', 'gzcon', 'gzfile', 'head', 'iconv', 'iconvlist', - 'icuSetCollate', 'identical', 'identity', 'ifelse', 'importIntoEnv', + 'gsub', 'gzcon', 'gzfile', 'head', 'iconv', 'iconvlist', + 'icuSetCollate', 'identical', 'identity', 'ifelse', 'importIntoEnv', 'in', 'inherits', 'intToBits', 'intToUtf8', 'interaction', 'interactive', 'intersect', 'inverse\.rle', 'invisible', 'invokeRestart', 'invokeRestartInteractively', 'is\.R', 'is\.array', 'is\.atomic', @@ -1317,7 +1317,7 @@ class SLexer(RegexLexer): 'keywords': [ (r'(' + r'|'.join(builtins_base) + r')' r'(?![\w\. =])', - Keyword.Pseudo), + Keyword.Pseudo), (r'(if|else|for|while|repeat|in|next|break|return|switch|function)' r'(?![\w\.])', Keyword.Reserved), |