summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-17 09:53:16 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-17 09:53:16 +0000
commit2d28a9b130660c81c8d31202503d3a84ea8fd81c (patch)
tree2e1517e3001db55b71660fbf00db8d7d0c737653 /re.c
parent8cee72d5c6184e8ea1680b79390e869ea231ac01 (diff)
* re.c (match_captures): rename from "groups".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4084 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 c7103c8717..16b4c5e295 100644
--- a/re.c
+++ b/re.c
@@ -945,7 +945,7 @@ match_to_a(match)
}
static VALUE
-match_groups(match)
+match_captures(match)
VALUE match;
{
return match_array(match, 1);
@@ -1771,7 +1771,7 @@ Init_Regexp()
rb_define_method(rb_cMatch, "end", match_end, 1);
rb_define_method(rb_cMatch, "to_a", match_to_a, 0);
rb_define_method(rb_cMatch, "[]", match_aref, -1);
- rb_define_method(rb_cMatch, "groups", match_groups, 0);
+ rb_define_method(rb_cMatch, "captures", match_captures, 0);
rb_define_method(rb_cMatch, "select", match_select, -1);
rb_define_method(rb_cMatch, "values_at", match_values_at, -1);
rb_define_method(rb_cMatch, "pre_match", rb_reg_match_pre, 0);