Skip to content

Commit

Permalink
Fix Rhino support
Browse files Browse the repository at this point in the history
  • Loading branch information
broady committed Mar 5, 2013
1 parent 948231a commit e4a0ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlebars.l
Expand Up @@ -47,7 +47,7 @@
<mu>'['[^\]]*']' { yytext = yytext.substr(1, yyleng-2); return 'ID'; }
<mu>. { return 'INVALID'; }
<par>\s+ { /*ignore whitespace*/ }
<par>[a-zA-Z0-9_$-/]+ { this.popState(); return 'PARTIAL_NAME'; }
<par>[a-zA-Z0-9_$-\/]+ { this.popState(); return 'PARTIAL_NAME'; }
<INITIAL,mu><<EOF>> { return 'EOF'; }

0 comments on commit e4a0ac4

Please sign in to comment.