diff options
Diffstat (limited to 'lua/lexers/vbscript.lua')
| -rw-r--r-- | lua/lexers/vbscript.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/vbscript.lua b/lua/lexers/vbscript.lua index e906a25..69e3dca 100644 --- a/lua/lexers/vbscript.lua +++ b/lua/lexers/vbscript.lua @@ -14,7 +14,7 @@ local ws = token(l.WHITESPACE, l.space^1) local comment = token(l.COMMENT, (P("'") + word_match({'rem'}, nil, true)) * l.nonnewline^0) -- Strings. -local string = token(l.STRING, l.delimited_range('"', true, true)) +local string = token(l.STRING, l.range('"', true, true)) -- Numbers. local number = token(l.NUMBER, (l.float + l.integer) * S('LlUuFf')^-2) |
