diff options
author | mitchell <unknown> | 2018-10-24 18:44:06 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-10-24 18:44:06 -0400 |
commit | 90bfa6a65a9d332d0ddfffb454a53725a6341f43 (patch) | |
tree | 89edf5f5c3d5ebffaf1b349bd994f0de8d403eb4 /lexlua/lexer.lua | |
parent | f4e2ef340116855fee230fa780853fca4ef53fb3 (diff) | |
download | scintilla-mirror-90bfa6a65a9d332d0ddfffb454a53725a6341f43.tar.gz |
lexlua: Fixed typo in a previous commit to lexer.lua.
Diffstat (limited to 'lexlua/lexer.lua')
-rw-r--r-- | lexlua/lexer.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/lexer.lua b/lexlua/lexer.lua index 6e47f74d2..5eca93a3c 100644 --- a/lexlua/lexer.lua +++ b/lexlua/lexer.lua @@ -1596,7 +1596,7 @@ M.print = lpeg_R(' ~') M.punct = lpeg_R('!/', ':@', '[\'', '{~') M.space = lpeg_S('\t\v\f\n\r ') -M.newline = P('\r')^-1 * '\n' +M.newline = lpeg_P('\r')^-1 * '\n' M.nonnewline = 1 - M.newline M.nonnewline_esc = 1 - (M.newline + '\\') + '\\' * M.any |