summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
commitc09cea5e1ba4e6d103fad9e6c6cbf29560abf78b (patch)
treef23af24cc3d193da3cc59197e065e2b986e8bb5d /re.c
parentb5d9cbe8e8bb5c0eb826ce68a81aa5579359b5e8 (diff)
* object.c (rb_mod_attr): make Module#attr to be an alias to
attr_reader. [RCR#331] * ruby.h: export classes/modules to implement sandbox. [ruby-core:08283] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/re.c b/re.c
index 6cc41f4bba..b3c4c1a49f 100644
--- a/re.c
+++ b/re.c
@@ -19,7 +19,7 @@
#define MBCTYPE_SJIS 2
#define MBCTYPE_UTF8 3
-static VALUE rb_eRegexpError;
+VALUE rb_eRegexpError;
#define BEG(no) regs->beg[no]
#define END(no) regs->end[no]
@@ -730,7 +730,7 @@ make_regexp(const char *s, long len, int flags, int ce)
*
*/
-static VALUE rb_cMatch;
+VALUE rb_cMatch;
static VALUE
match_alloc(VALUE klass)