diff options
| author | FUKUZAWA-Tadashi <[email protected]> | 2013-03-12 21:54:17 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-03-19 11:03:07 +0900 |
| commit | 05e735595e05fbc37e130c788753df656ca0152f (patch) | |
| tree | ea97d0f394d7bc7741ac640871b50a6a580180c6 /tools | |
| parent | a4c30b93acf931c49d79fb4b0c474dd66fbedcf4 (diff) | |
| download | mruby-05e735595e05fbc37e130c788753df656ca0152f.tar.gz mruby-05e735595e05fbc37e130c788753df656ca0152f.zip | |
implement literal %W %w %s
refactor string parsing
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mirb/mirb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mirb/mirb.c b/tools/mirb/mirb.c index 06ae16f5b..c771535c6 100644 --- a/tools/mirb/mirb.c +++ b/tools/mirb/mirb.c @@ -39,7 +39,7 @@ is_code_block_open(struct mrb_parser_state *parser) int code_block_open = FALSE; /* check for unterminated string */ - if (parser->sterm) return TRUE; + if (parser->lex_strterm) return TRUE; /* check for heredoc */ if (parser->heredoc_starts_nextline) return TRUE; |
