aboutsummaryrefslogtreecommitdiff
path: root/lexers/rexx.lua
diff options
context:
space:
mode:
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.