diff options
| author | Yusuke Endoh <[email protected]> | 2012-04-20 14:11:34 +0900 |
|---|---|---|
| committer | Yusuke Endoh <[email protected]> | 2012-04-20 14:14:01 +0900 |
| commit | dd1527cfc8b1b68025b7311ae0ba97915ffab38a (patch) | |
| tree | 69b42c5df21c5c9e23549d2e928a75717d6b2784 /src | |
| parent | fb196f424274333758d45ca5bbe4263f3e43da83 (diff) | |
| download | mruby-dd1527cfc8b1b68025b7311ae0ba97915ffab38a.tar.gz mruby-dd1527cfc8b1b68025b7311ae0ba97915ffab38a.zip | |
make %(foo) work
Diffstat (limited to 'src')
| -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 |
