Retain real value for keywords

databind
vitalif 2013-08-26 07:43:12 +00:00 committed by Vitaliy Filippov
parent ce333f5ded
commit 6232f8b902
1 changed files with 1 additions and 1 deletions

View File

@ -846,7 +846,7 @@ class VMXTemplateLexer
if (isset($this->keywords[$l = strtoupper($m[0])]))
{
// Keyword
return array($l, false);
return array($l, $m[0]);
}
// Identifier
return array('name', $m[0]);