From f711cd616b74c0774b9fdfd3a85bbb410f4739e8 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 18 Jan 2004 14:16:47 +0000 Subject: * class.c, error.c, file.c, io.c, numeric.c, object.c, re.c, struct.c, time.c: marked init_copy functions nodoc. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- class.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'class.c') diff --git a/class.c b/class.c index 3842231aa..234973f40 100644 --- a/class.c +++ b/class.c @@ -58,6 +58,7 @@ clone_method(mid, body, tbl) return ST_CONTINUE; } +/* :nodoc: */ VALUE rb_mod_init_copy(clone, orig) VALUE clone, orig; @@ -85,6 +86,7 @@ rb_mod_init_copy(clone, orig) return clone; } +/* :nodoc: */ VALUE rb_class_init_copy(clone, orig) VALUE clone, orig; -- cgit