From c88c96361d4c4e30db4e4078d744cd0b16ac4dcf Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 26 Mar 1998 10:22:14 +0000 Subject: protected methods git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index a8e6ddb615..04549d734c 100644 --- a/node.h +++ b/node.h @@ -305,10 +305,11 @@ typedef struct RNode { NODE *node_newnode(); VALUE rb_method_booundp(); -#define NOEX_PUBLIC 0 -#define NOEX_PRIVATE 1 -#define NOEX_UNDEF 2 -#define NOEX_CFUNC 2 +#define NOEX_PUBLIC 0 +#define NOEX_UNDEF 1 +#define NOEX_CFUNC 1 +#define NOEX_PRIVATE 2 +#define NOEX_PROTECTED 4 NODE *compile_string _((char *, char *, int)); NODE *compile_file _((char *, VALUE, int)); -- cgit v1.2.3