From dfaaf82f959180c0465c72ee542b221c2074ee4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 7 Apr 2016 22:53:58 +0200 Subject: lexer: update to scintillua-3.6.4-2 --- lexers/rexx.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lexers/rexx.lua') 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. -- cgit v1.2.3