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])])) if (isset($this->keywords[$l = strtoupper($m[0])]))
{ {
// Keyword // Keyword
return array($l, false); return array($l, $m[0]);
} }
// Identifier // Identifier
return array('name', $m[0]); return array('name', $m[0]);