summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-30 04:27:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-30 04:27:41 +0000
commit10ebbcadd905c4b77d2e28c9872e44703b04f2ac (patch)
tree114fa47e46066a829a1bf09fbeb158b6f5686efd /node.h
parent0b7f8eef403f5773dec64919a5628b1d0fbb0c0a (diff)
* eval.c (rb_f_send): do not call private methods if the receiver
is specified. [ruby-talk:153672] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/node.h b/node.h
index 4b133893c4..001df9593c 100644
--- a/node.h
+++ b/node.h
@@ -350,6 +350,7 @@ typedef struct RNode {
#define NOEX_MASK 6
#define NOEX_UNDEF NOEX_NOSUPER
+#define NOEX_RECV 8
VALUE rb_parser_new _((void));
VALUE rb_parser_end_seen_p _((VALUE));