summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorFUKUZAWA-Tadashi <[email protected]>2013-03-13 00:06:19 +0900
committerMasaki Muranaka <[email protected]>2013-03-19 11:03:08 +0900
commit3bcaeb09b4079c0d428f4fa76838a67bb5742d7a (patch)
treeed8dface24cde5c106ce6b02aa468231c5b064b9 /include
parent7c1526da6faa27c27fa440cb550d505caac3d732 (diff)
downloadmruby-3bcaeb09b4079c0d428f4fa76838a67bb5742d7a.tar.gz
mruby-3bcaeb09b4079c0d428f4fa76838a67bb5742d7a.zip
refactor heredoc identifier
Diffstat (limited to 'include')
-rw-r--r--include/mruby/compile.h3
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 */