From c1bf005f1b6e4cb1f5882219a688de0094fa9a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 2 Jan 2016 22:19:39 +0100 Subject: lexer: sync with upstream scintillua rev bdb74a2f31df --- 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 6e13dd3..582d86e 100644 --- a/lexers/rexx.lua +++ b/lexers/rexx.lua @@ -1,4 +1,4 @@ --- Copyright 2006-2015 Mitchell mitchell.att.foicica.com. See LICENSE. +-- Copyright 2006-2016 Mitchell mitchell.att.foicica.com. See LICENSE. -- Rexx LPeg lexer. local l = require('lexer') @@ -67,7 +67,7 @@ local func = token(l.FUNCTION, word_match({ }, '2', true)) -- Identifiers. -local word = l.alpha * (l.alnum + S('@#$\\.!?_')^0) +local word = l.alpha * (l.alnum + S('@#$\\.!?_'))^0 local identifier = token(l.IDENTIFIER, word) -- Operators. -- cgit v1.2.3