summaryrefslogtreecommitdiffstats
path: root/include/ruby/node.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-11 13:20:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-11 13:20:14 +0000
commitda28e65c2c97ed0859e34703cff01558e12777a8 (patch)
tree7b0a4c0ddebc91d95e349f4a9aa298eabb624a96 /include/ruby/node.h
parentf121cf75f0b5b8f590bfcb3a8f114377787c9198 (diff)
downloadruby-da28e65c2c97ed0859e34703cff01558e12777a8.tar.gz
ruby-da28e65c2c97ed0859e34703cff01558e12777a8.tar.xz
ruby-da28e65c2c97ed0859e34703cff01558e12777a8.zip
* include/ruby/node.h (NOEX_LOCAL): remove unused local visibility.
* class.c (ins_methods_push): ditto. * class.c (rb_class_local_methods): method removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/node.h')
-rw-r--r--include/ruby/node.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ruby/node.h b/include/ruby/node.h
index a5b66d35f..51268061e 100644
--- a/include/ruby/node.h
+++ b/include/ruby/node.h
@@ -467,8 +467,7 @@ typedef struct RNode {
#define NOEX_NOSUPER 0x01
#define NOEX_PRIVATE 0x02
#define NOEX_PROTECTED 0x04
-#define NOEX_LOCAL 0x08
-#define NOEX_MASK 0x0E /* 1110 */
+#define NOEX_MASK 0x06 /* 1110 */
#define NOEX_UNDEF NOEX_NOSUPER