summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-04-20 00:52:39 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-04-20 00:52:39 -0700
commit7b1bfa6228462edbb058a1d7927c2df31dda1af9 (patch)
tree71cbf2e5fa49aa344ee359dc67fcf5f7d508a669 /src/parse.y
parentce195a4465974228dae57b8b836941fa9054ff0b (diff)
parentdd1527cfc8b1b68025b7311ae0ba97915ffab38a (diff)
downloadmruby-7b1bfa6228462edbb058a1d7927c2df31dda1af9.tar.gz
mruby-7b1bfa6228462edbb058a1d7927c2df31dda1af9.zip
Merge pull request #5 from mame/fix-percent-notation
make %(foo) work
Diffstat (limited to 'src/parse.y')
-rw-r--r--src/parse.y1
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