small fix about illegal keywords

This commit is contained in:
ukyo 2012-09-30 17:39:35 +09:00
commit 663fae408e

View file

@ -133,6 +133,11 @@ define(function(require, exports, module) {
}, {
token : "comment",
regex : "#.*"
}, {
token : [
"punctuation.operator", "identifier"
],
regex : "(\\.)(" + illegal + ")"
}, {
token : "punctuation.operator",
regex : "\\."