From e4a0ac4b040d9ab0decf547c6e4684f86befc99b Mon Sep 17 00:00:00 2001 From: Chris Broadfoot Date: Mon, 4 Mar 2013 16:08:00 -0800 Subject: [PATCH] Fix Rhino support --- src/handlebars.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlebars.l b/src/handlebars.l index b32e39c6..5fa2bc0d 100644 --- a/src/handlebars.l +++ b/src/handlebars.l @@ -47,7 +47,7 @@ '['[^\]]*']' { yytext = yytext.substr(1, yyleng-2); return 'ID'; } . { return 'INVALID'; } \s+ { /*ignore whitespace*/ } -[a-zA-Z0-9_$-/]+ { this.popState(); return 'PARTIAL_NAME'; } +[a-zA-Z0-9_$-\/]+ { this.popState(); return 'PARTIAL_NAME'; } <> { return 'EOF'; }