diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-31 13:47:48 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-31 13:47:48 +0000 |
commit | b4281971ed7cf2c45804a62d6c0b19b8c3672296 (patch) | |
tree | 00953d8a1488fdf9ef80c03d51262396ba09a763 | |
parent | b28f4e578bdcbd2b05a08154d65f069d8dc4add3 (diff) | |
download | ruby-b4281971ed7cf2c45804a62d6c0b19b8c3672296.tar.gz ruby-b4281971ed7cf2c45804a62d6c0b19b8c3672296.tar.xz ruby-b4281971ed7cf2c45804a62d6c0b19b8c3672296.zip |
* eval.c (TAG_DST()): take no argument.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | eval.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sun Aug 31 22:46:55 2003 WATANABE Hirofumi <eban@ruby-lang.org> + + * eval.c (TAG_DST()): take no argument. + Sun Aug 31 22:27:10 2003 <nagai@dumbo.ai.kyutech.ac.jp> * process.c (p_gid_sw_ensure): lack of function type @@ -857,7 +857,7 @@ static struct tag *prot_tag; prot_tag = _tag.prev; \ } while (0) -#define TAG_DST(t) (_tag.dst == (VALUE)_tag.scope) +#define TAG_DST() (_tag.dst == (VALUE)_tag.scope) #define TAG_RETURN 0x1 #define TAG_BREAK 0x2 |