From e82a0a4100469c89aab57ba46b51c02d98a98095 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 15 Mar 2005 14:53:17 +0000 Subject: * error.c (errno_missing): add rdoc. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/error.c b/error.c index 91bc99354..30986e397 100644 --- a/error.c +++ b/error.c @@ -992,7 +992,6 @@ syserr_errno(self) * if the error numbers _self_ and _other_ are the same. */ - static VALUE syserr_eqq(self, exc) VALUE self, exc; @@ -1017,6 +1016,12 @@ syserr_eqq(self, exc) return Qfalse; } +/* + * call-seq: + * Errno.const_missing => SystemCallError + * + * Returns default SystemCallError class. + */ static VALUE errno_missing(self, id) VALUE self, id; -- cgit