diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-22 07:21:40 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-22 07:21:40 +0000 |
| commit | d9b9d8743892c3b544fd4e40bbc7a6df18e65490 (patch) | |
| tree | 53e51b1645687bc93877f6b2c5e66db82124630e /parse.y | |
| parent | 7ad4b5f38b41f52def9031a3342223632f1e7a7e (diff) | |
| download | ruby-d9b9d8743892c3b544fd4e40bbc7a6df18e65490.tar.gz ruby-d9b9d8743892c3b544fd4e40bbc7a6df18e65490.tar.xz ruby-d9b9d8743892c3b544fd4e40bbc7a6df18e65490.zip | |
* parse.y (string_content): reset lexical states at the beginning of
string contents. [ruby-list:39061]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2063,10 +2063,14 @@ string_content : tSTRING_CONTENT $<node>$ = lex_strterm; lex_strterm = 0; lex_state = EXPR_BEG; + COND_PUSH(0); + CMDARG_PUSH(0); } compstmt '}' { lex_strterm = $<node>2; + COND_LEXPOP(); + CMDARG_LEXPOP(); if (($$ = $3) && nd_type($$) == NODE_NEWLINE) { $$ = $$->nd_next; rb_gc_force_recycle((VALUE)$3); |
