diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 07:04:17 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 07:04:17 +0000 |
| commit | 0bee190aafc8219eac5e1b1c885ea09009cbdfb7 (patch) | |
| tree | a3771a3a26fee50291e65968e4564fd828f4644d /re.c | |
| parent | d4255ef0d33b8365370518991bbd7bd09bae03e3 (diff) | |
| download | ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.tar.gz ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.tar.xz ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.zip | |
* ruby.h: export classes/modules to implement sandbox.
[ruby-core:08283]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
| -rw-r--r-- | re.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ #include "re.h" #include <ctype.h> -static VALUE rb_eRegexpError; +VALUE rb_eRegexpError; #define BEG(no) regs->beg[no] #define END(no) regs->end[no] @@ -664,7 +664,7 @@ make_regexp(s, len, flags) * */ -static VALUE rb_cMatch; +VALUE rb_cMatch; static VALUE match_alloc _((VALUE)); static VALUE |
