mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* error.c (errno_missing): add rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
52fcd892e7
commit
f109834b8c
1 changed files with 6 additions and 1 deletions
7
error.c
7
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;
|
||||
|
|
Loading…
Reference in a new issue