diff options
| author | FUKUZAWA-Tadashi <[email protected]> | 2013-03-13 00:06:19 +0900 |
|---|---|---|
| committer | FUKUZAWA-Tadashi <[email protected]> | 2013-03-17 21:27:38 +0900 |
| commit | aec3e1c4ff6603350811e672d6c706294f59e44e (patch) | |
| tree | 12e0646e93192aecda1429e5dfc779c8b38f248e /include | |
| parent | 49413a312fab8da3787985e45cff4c3317f12eab (diff) | |
| download | mruby-aec3e1c4ff6603350811e672d6c706294f59e44e.tar.gz mruby-aec3e1c4ff6603350811e672d6c706294f59e44e.zip | |
refactor heredoc identifier
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/compile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h index 45eb72403..4b12cb10c 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -74,8 +74,7 @@ enum mrb_string_type { str_sword = (STR_FUNC_PARSING|STR_FUNC_WORD|STR_FUNC_ARRAY), str_dword = (STR_FUNC_PARSING|STR_FUNC_WORD|STR_FUNC_ARRAY|STR_FUNC_EXPAND), str_ssym = (STR_FUNC_PARSING|STR_FUNC_SYMBOL), - str_sheredoc = (STR_FUNC_PARSING|STR_FUNC_HEREDOC), - str_dheredoc = (STR_FUNC_PARSING|STR_FUNC_HEREDOC|STR_FUNC_EXPAND), + str_heredoc = (STR_FUNC_PARSING|STR_FUNC_HEREDOC), }; /* heredoc structure */ |
