summaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-18 14:16:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-18 14:16:47 +0000
commitf711cd616b74c0774b9fdfd3a85bbb410f4739e8 (patch)
treedeb804fec69426a11c4dd50c742ad7d9cb8ba846 /error.c
parent8ed4905a90a32d5d1e10e22ecda69e5bdc3b038d (diff)
downloadruby-f711cd616b74c0774b9fdfd3a85bbb410f4739e8.tar.gz
ruby-f711cd616b74c0774b9fdfd3a85bbb410f4739e8.tar.xz
ruby-f711cd616b74c0774b9fdfd3a85bbb410f4739e8.zip
* 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
Diffstat (limited to 'error.c')
-rw-r--r--error.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/error.c b/error.c
index f2424272d..5de902888 100644
--- a/error.c
+++ b/error.c
@@ -672,6 +672,7 @@ nometh_err_initialize(argc, argv, self)
return self;
}
+/* :nodoc: */
static void
name_err_mesg_mark(ptr)
VALUE *ptr;
@@ -679,6 +680,7 @@ name_err_mesg_mark(ptr)
rb_gc_mark_locations(ptr, ptr+3);
}
+/* :nodoc: */
static VALUE
name_err_mesg_init(obj, mesg, recv, method)
VALUE obj, mesg, recv, method;
@@ -691,6 +693,7 @@ name_err_mesg_init(obj, mesg, recv, method)
return Data_Wrap_Struct(rb_cNameErrorMesg, name_err_mesg_mark, -1, ptr);
}
+/* :nodoc: */
static VALUE
name_err_mesg_to_str(obj)
VALUE obj;
@@ -737,6 +740,7 @@ name_err_mesg_to_str(obj)
return mesg;
}
+/* :nodoc: */
static VALUE
name_err_mesg_load(klass, str)
VALUE klass, str;