summaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-08 02:21:28 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-08 02:21:28 +0000
commit416f20480835a2bcb5ce5547e091cf5f1c05fba3 (patch)
tree9111deb368920221fce9b02fd705eafc6d6249b2 /re.c
parent0141c6651565d1d3f28580d4cec8b70d0f46d769 (diff)
downloadruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.tar.gz
ruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.tar.xz
ruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.zip
* eval.c, object.c, process.c, re.c: don't use C++ style comments.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/re.c b/re.c
index 307017c85..9332dfe38 100644
--- a/re.c
+++ b/re.c
@@ -2292,6 +2292,6 @@ Init_Regexp()
rb_define_method(rb_cMatch, "pre_match", rb_reg_match_pre, 0);
rb_define_method(rb_cMatch, "post_match", rb_reg_match_post, 0);
rb_define_method(rb_cMatch, "to_s", match_to_s, 0);
- rb_define_method(rb_cMatch, "inspect", rb_any_to_s, 0); // in object.c
+ rb_define_method(rb_cMatch, "inspect", rb_any_to_s, 0); /* in object.c */
rb_define_method(rb_cMatch, "string", match_string, 0);
}