ruby-changes:4484
From: ko1@a...
Date: Fri, 11 Apr 2008 19:10:13 +0900 (JST)
Subject: [ruby-changes:4484] kazu - Ruby:r15976 (ruby_1_8): * process.c: new method Process.exec; backported from 1.9. bug#19006
kazu 2008-04-11 19:09:56 +0900 (Fri, 11 Apr 2008)
New Revision: 15976
Modified files:
branches/ruby_1_8/ChangeLog
branches/ruby_1_8/process.c
Log:
* process.c: new method Process.exec; backported from 1.9. bug#19006
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ChangeLog?r1=15976&r2=15975&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/process.c?r1=15976&r2=15975&diff_format=u
Index: ruby_1_8/process.c
===================================================================
--- ruby_1_8/process.c (revision 15975)
+++ ruby_1_8/process.c (revision 15976)
@@ -3573,6 +3573,7 @@
#endif
#endif
+ rb_define_singleton_method(rb_mProcess, "exec", rb_f_exec, -1);
rb_define_singleton_method(rb_mProcess, "fork", rb_f_fork, 0);
rb_define_singleton_method(rb_mProcess, "exit!", rb_f_exit_bang, -1);
rb_define_singleton_method(rb_mProcess, "exit", rb_f_exit, -1); /* in eval.c */
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog (revision 15975)
+++ ruby_1_8/ChangeLog (revision 15976)
@@ -1,3 +1,7 @@
+Fri Apr 11 18:58:09 2008 Kazuhiro NISHIYAMA <zn@m...>
+
+ * process.c: new method Process.exec; backported from 1.9. bug#19006
+
Fri Apr 11 12:43:56 2008 Hidetoshi NAGAI <nagai@a...>
* ext/tk/lib/tkextlib/tile.rb, ext/tk/lib/tkextlib/tile/style.rb,
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/