1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/pty/pty.c (Init_pty): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-12-02 17:05:46 +00:00
parent 852b4629c1
commit 0646c1e0d6
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Dec 3 02:04:21 2008 Yusuke Endoh <mame@tsg.ne.jp>
* ext/pty/pty.c (Init_pty): fix typo.
Tue Dec 2 19:22:13 2008 Tanaka Akira <akr@fsij.org>
* lib/open3.rb (Open3.popen3): merge hash options if given.

View file

@ -438,7 +438,7 @@ Init_pty()
cPTY = rb_define_module("PTY");
rb_define_module_function(cPTY,"getpty",pty_getpty,-1);
rb_define_module_function(cPTY,"spawn",pty_getpty,-1);
rb_define_singleton_function(cPTY,"check",pty_check,-1);
rb_define_singleton_method(cPTY,"check",pty_check,-1);
eChildExited = rb_define_class_under(cPTY,"ChildExited",rb_eRuntimeError);
rb_define_method(eChildExited,"status",echild_status,0);