* re.c (rb_reg_initialize): fix indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-11-20 14:05:44 +00:00
parent 22dcc88584
commit afea9046a9
1 changed files with 2 additions and 2 deletions

4
re.c
View File

@ -2387,8 +2387,8 @@ rb_reg_initialize(VALUE obj, const char *s, long len, rb_encoding *enc,
re->ptr = 0; re->ptr = 0;
if (rb_enc_dummy_p(enc)) { if (rb_enc_dummy_p(enc)) {
errcpy(err, "can't make regexp with dummy encoding"); errcpy(err, "can't make regexp with dummy encoding");
return -1; return -1;
} }
unescaped = rb_reg_preprocess(s, s+len, enc, &fixed_enc, err); unescaped = rb_reg_preprocess(s, s+len, enc, &fixed_enc, err);