diff options
Diffstat (limited to 'lexlua/elixir.lua')
-rw-r--r-- | lexlua/elixir.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/elixir.lua b/lexlua/elixir.lua index 18c62aaa9..6dc0bfff4 100644 --- a/lexlua/elixir.lua +++ b/lexlua/elixir.lua @@ -4,7 +4,7 @@ local lexer = require('lexer') local token, word_match = lexer.token, lexer.word_match -local B, P, R, S = lpeg.B, lpeg.P, lpeg.R, lpeg.S +local B, P, S, R = lpeg.B, lpeg.P, lpeg.S, lpeg.R local lex = lexer.new('elixir', {fold_by_indentation = true}) |