aboutsummaryrefslogtreecommitdiff
path: root/lexers/rexx.lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-04-07 22:53:58 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-04-07 22:55:41 +0200
commitdfaaf82f959180c0465c72ee542b221c2074ee4a (patch)
tree2194e1bcea7f22678b4613640e5190547fd7aeb8 /lexers/rexx.lua
parent7062a05be3bd595a2f8ef5b395360b5765744633 (diff)
downloadvis-dfaaf82f959180c0465c72ee542b221c2074ee4a.tar.gz
vis-dfaaf82f959180c0465c72ee542b221c2074ee4a.tar.xz
lexer: update to scintillua-3.6.4-2
Diffstat (limited to 'lexers/rexx.lua')
-rw-r--r--lexers/rexx.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/rexx.lua b/lexers/rexx.lua
index 582d86e..c750168 100644
--- a/lexers/rexx.lua
+++ b/lexers/rexx.lua
@@ -16,8 +16,8 @@ local block_comment = l.nested_pair('/*', '*/')
local comment = token(l.COMMENT, line_comment + block_comment)
-- Strings.
-local sq_str = l.delimited_range("'", true)
-local dq_str = l.delimited_range('"', true)
+local sq_str = l.delimited_range("'", true, true)
+local dq_str = l.delimited_range('"', true, true)
local string = token(l.STRING, sq_str + dq_str)
-- Numbers.