diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-20 00:52:39 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-20 00:52:39 -0700 |
| commit | 7b1bfa6228462edbb058a1d7927c2df31dda1af9 (patch) | |
| tree | 71cbf2e5fa49aa344ee359dc67fcf5f7d508a669 | |
| parent | ce195a4465974228dae57b8b836941fa9054ff0b (diff) | |
| parent | dd1527cfc8b1b68025b7311ae0ba97915ffab38a (diff) | |
| download | mruby-7b1bfa6228462edbb058a1d7927c2df31dda1af9.tar.gz mruby-7b1bfa6228462edbb058a1d7927c2df31dda1af9.zip | |
Merge pull request #5 from mame/fix-percent-notation
make %(foo) work
| -rw-r--r-- | src/parse.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse.y b/src/parse.y index 5925b9a5e..b22dd10f6 100644 --- a/src/parse.y +++ b/src/parse.y @@ -4228,6 +4228,7 @@ parser_yylex(parser_state *p) else if (term == '[') term = ']'; else if (term == '{') term = '}'; else if (term == '<') term = '>'; + p->sterm = term; #if 0 else paren = 0; #endif |
