summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
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)