summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-31 13:47:48 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-31 13:47:48 +0000
commitb4281971ed7cf2c45804a62d6c0b19b8c3672296 (patch)
tree00953d8a1488fdf9ef80c03d51262396ba09a763
parentb28f4e578bdcbd2b05a08154d65f069d8dc4add3 (diff)
downloadruby-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--ChangeLog4
-rw-r--r--eval.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 020031aa9..e65788f5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/eval.c b/eval.c
index 3ec67787b..4fbdca775 100644
--- a/eval.c
+++ b/eval.c
@@ -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