From 2efd8b82482c9e9c87f809c2d774484ad5ca1d88 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Aug 2009 03:11:01 +0000 Subject: * parse.y (ENABLE_SELECTOR_NAMESPACE): defaulted to 0. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 0e99a120f..5a3e1aabd 100644 --- a/parse.y +++ b/parse.y @@ -9148,6 +9148,10 @@ static const struct { #define op_tbl_count (sizeof(op_tbl) / sizeof(op_tbl[0])) +#ifndef ENABLE_SELECTOR_NAMESPACE +#define ENABLE_SELECTOR_NAMESPACE 0 +#endif + static struct symbols { ID last_id; st_table *sym_id; -- cgit