diff options
Diffstat (limited to 'g.peg')
-rw-r--r-- | g.peg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ list <- { $$ = astnode_new_list(); } number <- < [0-9]+ > (! ident_char) _ { $$ = astnode_new_num(atoi($1)); } ident <- < ident_char+ > _ { $$ = astnode_new_ident(strdup($1)); } -string <- '"' < [^"]+ > '"' _ { $$ = astnode_new_string(strdup($1)); } +string <- '"' < [^"]* > '"' _ { $$ = astnode_new_string(strdup($1)); } ident_char <- [-_a-zA-Z'+*/\\%=0-9<>] _ <- [ \t\n]* |