diff options
Diffstat (limited to 'lexlua/python.lua')
-rw-r--r-- | lexlua/python.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lexlua/python.lua b/lexlua/python.lua index 4786e7a44..629f61f7a 100644 --- a/lexlua/python.lua +++ b/lexlua/python.lua @@ -3,7 +3,7 @@ local lexer = require('lexer') local token, word_match = lexer.token, lexer.word_match -local P, R, S = lpeg.P, lpeg.R, lpeg.S +local P, S = lpeg.P, lpeg.S local lex = lexer.new('python', {fold_by_indentation = true}) @@ -86,9 +86,9 @@ lex:add_rule('string', token(lexer.STRING, tq_str + sq_str + dq_str + raw_sq_str + raw_dq_str)) -- Numbers. -local dec = lexer.digit^1 * S('Ll')^-1 +local dec = lexer.dec_num * S('Ll')^-1 local bin = '0b' * S('01')^1 * ('_' * S('01')^1)^0 -local oct = '0' * R('07')^1 * S('Ll')^-1 +local oct = lexer.oct_num * S('Ll')^-1 local integer = S('+-')^-1 * (bin + lexer.hex_num + oct + dec) lex:add_rule('number', token(lexer.NUMBER, lexer.float + integer)) |